From 23787e277f8962ce6860abae4a8724354e17cb0c Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Mon, 1 Nov 2021 19:51:03 +0100 Subject: [PATCH 01/23] add jsonrpsee glue code --- node/metrics/src/tests.rs | 2 +- node/service/src/lib.rs | 7 +- node/test/service/src/lib.rs | 1 + node/test/service/tests/build-blocks.rs | 2 +- node/test/service/tests/call-function.rs | 4 +- .../adder/collator/tests/integration.rs | 3 +- rpc/Cargo.toml | 2 +- rpc/src/lib.rs | 95 +++++++++++-------- 8 files changed, 66 insertions(+), 50 deletions(-) diff --git a/node/metrics/src/tests.rs b/node/metrics/src/tests.rs index 50dc2cf7118c..56e07d96280d 100644 --- a/node/metrics/src/tests.rs +++ b/node/metrics/src/tests.rs @@ -25,7 +25,7 @@ use std::collections::HashMap; const DEFAULT_PROMETHEUS_PORT: u16 = 9616; -#[substrate_test_utils::test] +#[substrate_test_utils::test(flavor = "multi_thread")] async fn runtime_can_publish_metrics() { let mut alice_config = node_config(|| {}, tokio::runtime::Handle::current(), Alice, Vec::new(), true); diff --git a/node/service/src/lib.rs b/node/service/src/lib.rs index fb27d8509f7e..1f8f413c6c8a 100644 --- a/node/service/src/lib.rs +++ b/node/service/src/lib.rs @@ -406,7 +406,10 @@ fn new_partial( sc_consensus::DefaultImportQueue>, sc_transaction_pool::FullPool>, ( - impl service::RpcExtensionBuilder, + impl Fn( + polkadot_rpc::DenyUnsafe, + polkadot_rpc::SubscriptionTaskExecutor, + ) -> Result, ( babe::BabeBlockImport< Block, @@ -913,7 +916,7 @@ where client: client.clone(), keystore: keystore_container.sync_keystore(), network: network.clone(), - rpc_extensions_builder: Box::new(rpc_extensions_builder), + rpc_builder: Box::new(rpc_extensions_builder), transaction_pool: transaction_pool.clone(), task_manager: &mut task_manager, system_rpc_tx, diff --git a/node/test/service/src/lib.rs b/node/test/service/src/lib.rs index 8cf75a75f62c..daff69460231 100644 --- a/node/test/service/src/lib.rs +++ b/node/test/service/src/lib.rs @@ -191,6 +191,7 @@ pub fn node_config( rpc_ws_max_connections: None, rpc_cors: None, rpc_methods: Default::default(), + rpc_id_provider: None, ws_max_out_buffer_capacity: None, prometheus_config: None, telemetry_endpoints: None, diff --git a/node/test/service/tests/build-blocks.rs b/node/test/service/tests/build-blocks.rs index 2cbc332e52de..6f7951a0771d 100644 --- a/node/test/service/tests/build-blocks.rs +++ b/node/test/service/tests/build-blocks.rs @@ -18,7 +18,7 @@ use futures::{future, pin_mut, select, FutureExt}; use polkadot_test_service::*; use sp_keyring::Sr25519Keyring; -#[substrate_test_utils::test] +#[substrate_test_utils::test(flavor = "multi_thread")] async fn ensure_test_service_build_blocks() { let mut builder = sc_cli::LoggerBuilder::new(""); builder.with_colors(false); diff --git a/node/test/service/tests/call-function.rs b/node/test/service/tests/call-function.rs index 97c722bfbcd4..5c149766c6fb 100644 --- a/node/test/service/tests/call-function.rs +++ b/node/test/service/tests/call-function.rs @@ -17,7 +17,7 @@ use polkadot_test_service::*; use sp_keyring::Sr25519Keyring::{Alice, Bob, Charlie}; -#[substrate_test_utils::test] +#[substrate_test_utils::test(flavor = "multi_thread")] async fn call_function_actually_work() { let alice_config = node_config(|| {}, tokio::runtime::Handle::current(), Alice, Vec::new(), true); @@ -30,7 +30,7 @@ async fn call_function_actually_work() { }); let output = alice.send_extrinsic(function, Bob).await.unwrap(); - let res = output.result.expect("return value expected"); + let res = output.result; let json = serde_json::from_str::(res.as_str()).expect("valid JSON"); let object = json.as_object().expect("JSON is an object"); assert!(object.contains_key("jsonrpc"), "key jsonrpc exists"); diff --git a/parachain/test-parachains/adder/collator/tests/integration.rs b/parachain/test-parachains/adder/collator/tests/integration.rs index cb04fc942744..c8ef0a40b2ae 100644 --- a/parachain/test-parachains/adder/collator/tests/integration.rs +++ b/parachain/test-parachains/adder/collator/tests/integration.rs @@ -20,7 +20,8 @@ const PUPPET_EXE: &str = env!("CARGO_BIN_EXE_adder_collator_puppet_worker"); // If this test is failing, make sure to run all tests with the `real-overseer` feature being enabled. -#[substrate_test_utils::test] + +#[substrate_test_utils::test(flavor = "multi_thread")] async fn collating_using_adder_collator() { use polkadot_primitives::v2::Id as ParaId; use sp_keyring::AccountKeyring::*; diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index a3388753697e..1f951f9e63e2 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -jsonrpc-core = "18.0.0" +jsonrpsee = { version = "0.9", features = ["server"] } polkadot-primitives = { path = "../primitives" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/rpc/src/lib.rs b/rpc/src/lib.rs index dffff5ac1b85..ba1898ccadcc 100644 --- a/rpc/src/lib.rs +++ b/rpc/src/lib.rs @@ -20,12 +20,12 @@ use std::sync::Arc; +use jsonrpsee::RpcModule; use polkadot_primitives::v2::{AccountId, Balance, Block, BlockNumber, Hash, Nonce}; use sc_client_api::AuxStore; use sc_consensus_babe::Epoch; use sc_finality_grandpa::FinalityProofProvider; pub use sc_rpc::{DenyUnsafe, SubscriptionTaskExecutor}; -use sc_sync_state_rpc::{SyncStateRpcApi, SyncStateRpcHandler}; use sp_api::ProvideRuntimeApi; use sp_block_builder::BlockBuilder; use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; @@ -35,7 +35,7 @@ use sp_keystore::SyncCryptoStorePtr; use txpool_api::TransactionPool; /// A type representing all RPC extensions. -pub type RpcExtension = jsonrpc_core::IoHandler; +pub type RpcExtension = RpcModule<()>; /// Extra dependencies for BABE. pub struct BabeDeps { @@ -115,13 +115,16 @@ where B: sc_client_api::Backend + Send + Sync + 'static, B::State: sc_client_api::StateBackend>, { - use frame_rpc_system::{FullSystem, SystemApi}; - use pallet_mmr_rpc::{Mmr, MmrApi}; - use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApi}; - use sc_consensus_babe_rpc::BabeRpcHandler; - use sc_finality_grandpa_rpc::{GrandpaApi, GrandpaRpcHandler}; - - let mut io = jsonrpc_core::IoHandler::default(); + use beefy_gadget_rpc::{BeefyApiServer, BeefyRpcHandler}; + use frame_rpc_system::{SystemApiServer, SystemRpc}; + use pallet_mmr_rpc::{MmrApiServer, MmrRpc}; + use pallet_transaction_payment_rpc::{TransactionPaymentApiServer, TransactionPaymentRpc}; + use sc_consensus_babe_rpc::{BabeApiServer, BabeRpc}; + use sc_finality_grandpa_rpc::{GrandpaApiServer, GrandpaRpc}; + use sc_sync_state_rpc::{SyncStateRpc, SyncStateRpcApiServer}; + use substrate_state_trie_migration_rpc::StateMigrationApiServer; + + let mut io = RpcModule::new(()); let FullDeps { client, pool, select_chain, chain_spec, deny_unsafe, babe, grandpa, beefy } = deps; let BabeDeps { keystore, babe_config, shared_epoch_changes } = babe; @@ -133,41 +136,49 @@ where finality_provider, } = grandpa; - io.extend_with(substrate_state_trie_migration_rpc::StateMigrationApi::to_delegate( - substrate_state_trie_migration_rpc::MigrationRpc::new(client.clone(), backend, deny_unsafe), - )); - - io.extend_with(SystemApi::to_delegate(FullSystem::new(client.clone(), pool, deny_unsafe))); - io.extend_with(TransactionPaymentApi::to_delegate(TransactionPayment::new(client.clone()))); - io.extend_with(MmrApi::to_delegate(Mmr::new(client.clone()))); - io.extend_with(sc_consensus_babe_rpc::BabeApi::to_delegate(BabeRpcHandler::new( - client.clone(), - shared_epoch_changes.clone(), - keystore, - babe_config, - select_chain, - deny_unsafe, - ))); - io.extend_with(GrandpaApi::to_delegate(GrandpaRpcHandler::new( - shared_authority_set.clone(), - shared_voter_state, - justification_stream, - subscription_executor, - finality_provider, - ))); - io.extend_with(SyncStateRpcApi::to_delegate(SyncStateRpcHandler::new( - chain_spec, - client, - shared_authority_set, - shared_epoch_changes, - )?)); + io.merge(substrate_state_trie_migration_rpc::MigrationRpc::new(client.clone(), backend, deny_unsafe).into_rpc())?; + io.merge(SystemRpc::new(client.clone(), pool.clone(), deny_unsafe).into_rpc())?; + io.merge(TransactionPaymentRpc::new(client.clone()).into_rpc())?; + io.merge(MmrRpc::new(client.clone()).into_rpc())?; + io.merge( + BabeRpc::new( + client.clone(), + shared_epoch_changes.clone(), + keystore, + babe_config, + select_chain, + deny_unsafe, + ) + .into_rpc(), + )?; + io.merge( + GrandpaRpc::new( + subscription_executor, + shared_authority_set.clone(), + shared_voter_state, + justification_stream, + finality_provider, + ) + .into_rpc(), + )?; + io.merge( + SyncStateRpc::new( + chain_spec, + client, + shared_authority_set, + shared_epoch_changes, + )? + .into_rpc(), + )?; - let handler: beefy_gadget_rpc::BeefyRpcHandler = beefy_gadget_rpc::BeefyRpcHandler::new( - beefy.beefy_commitment_stream, - beefy.beefy_best_block_stream, - beefy.subscription_executor, + io.merge( + BeefyRpcHandler::::new( + beefy.beefy_commitment_stream, + beefy.beefy_best_block_stream, + beefy.subscription_executor, + )? + .into_rpc(), )?; - io.extend_with(beefy_gadget_rpc::BeefyApi::to_delegate(handler)); Ok(io) } From 24b0def3592b9ff487db5a2989df0f9f2edb6f7b Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Wed, 6 Apr 2022 18:08:58 +0200 Subject: [PATCH 02/23] diener --substrate dp-jsonrpsee-integration-2 --- Cargo.lock | 1063 ++++++----------- Cargo.toml | 2 +- bridges/bin/millau/node/Cargo.toml | 60 +- bridges/bin/millau/runtime/Cargo.toml | 66 +- bridges/bin/rialto-parachain/node/Cargo.toml | 68 +- .../bin/rialto-parachain/runtime/Cargo.toml | 52 +- bridges/bin/rialto/node/Cargo.toml | 94 +- bridges/bin/rialto/runtime/Cargo.toml | 70 +- bridges/bin/runtime-common/Cargo.toml | 22 +- bridges/fuzz/storage-proof/Cargo.toml | 10 +- bridges/modules/dispatch/Cargo.toml | 12 +- bridges/modules/grandpa/Cargo.toml | 18 +- bridges/modules/messages/Cargo.toml | 16 +- .../modules/shift-session-manager/Cargo.toml | 14 +- bridges/modules/token-swap/Cargo.toml | 16 +- bridges/primitives/chain-kusama/Cargo.toml | 10 +- bridges/primitives/chain-millau/Cargo.toml | 16 +- bridges/primitives/chain-polkadot/Cargo.toml | 10 +- .../chain-rialto-parachain/Cargo.toml | 12 +- bridges/primitives/chain-rialto/Cargo.toml | 12 +- bridges/primitives/chain-rococo/Cargo.toml | 10 +- bridges/primitives/chain-westend/Cargo.toml | 10 +- bridges/primitives/chain-wococo/Cargo.toml | 6 +- bridges/primitives/header-chain/Cargo.toml | 10 +- .../primitives/message-dispatch/Cargo.toml | 4 +- bridges/primitives/messages/Cargo.toml | 8 +- bridges/primitives/polkadot-core/Cargo.toml | 14 +- bridges/primitives/runtime/Cargo.toml | 14 +- bridges/primitives/test-utils/Cargo.toml | 8 +- bridges/primitives/token-swap/Cargo.toml | 8 +- bridges/relays/bin-substrate/Cargo.toml | 14 +- bridges/relays/client-kusama/Cargo.toml | 6 +- bridges/relays/client-millau/Cargo.toml | 10 +- bridges/relays/client-polkadot/Cargo.toml | 6 +- .../relays/client-rialto-parachain/Cargo.toml | 6 +- bridges/relays/client-rialto/Cargo.toml | 10 +- bridges/relays/client-rococo/Cargo.toml | 6 +- bridges/relays/client-substrate/Cargo.toml | 30 +- bridges/relays/client-westend/Cargo.toml | 6 +- bridges/relays/client-wococo/Cargo.toml | 6 +- bridges/relays/lib-substrate-relay/Cargo.toml | 14 +- bridges/relays/messages/Cargo.toml | 2 +- bridges/relays/utils/Cargo.toml | 2 +- cli/Cargo.toml | 16 +- core-primitives/Cargo.toml | 6 +- erasure-coding/Cargo.toml | 4 +- node/client/Cargo.toml | 64 +- node/collation-generation/Cargo.toml | 4 +- node/core/approval-voting/Cargo.toml | 18 +- node/core/av-store/Cargo.toml | 4 +- node/core/backing/Cargo.toml | 12 +- node/core/bitfield-signing/Cargo.toml | 2 +- node/core/candidate-validation/Cargo.toml | 6 +- node/core/chain-api/Cargo.toml | 8 +- node/core/chain-selection/Cargo.toml | 2 +- node/core/dispute-coordinator/Cargo.toml | 8 +- node/core/parachains-inherent/Cargo.toml | 6 +- node/core/provisioner/Cargo.toml | 4 +- node/core/pvf-checker/Cargo.toml | 12 +- node/core/pvf/Cargo.toml | 18 +- node/core/runtime-api/Cargo.toml | 12 +- node/jaeger/Cargo.toml | 4 +- node/malus/Cargo.toml | 4 +- node/metrics/Cargo.toml | 16 +- node/network/approval-distribution/Cargo.toml | 2 +- .../availability-distribution/Cargo.toml | 12 +- node/network/availability-recovery/Cargo.toml | 10 +- node/network/bitfield-distribution/Cargo.toml | 8 +- node/network/bridge/Cargo.toml | 8 +- node/network/collator-protocol/Cargo.toml | 12 +- node/network/dispute-distribution/Cargo.toml | 12 +- node/network/gossip-support/Cargo.toml | 14 +- node/network/protocol/Cargo.toml | 4 +- .../network/statement-distribution/Cargo.toml | 18 +- node/overseer/Cargo.toml | 6 +- node/primitives/Cargo.toml | 12 +- node/service/Cargo.toml | 94 +- node/subsystem-test-helpers/Cargo.toml | 10 +- node/subsystem-types/Cargo.toml | 4 +- node/subsystem-util/Cargo.toml | 6 +- node/test/client/Cargo.toml | 28 +- node/test/service/Cargo.toml | 62 +- parachain/Cargo.toml | 8 +- parachain/test-parachains/Cargo.toml | 2 +- parachain/test-parachains/adder/Cargo.toml | 6 +- .../test-parachains/adder/collator/Cargo.toml | 12 +- parachain/test-parachains/halt/Cargo.toml | 2 +- parachain/test-parachains/undying/Cargo.toml | 6 +- .../undying/collator/Cargo.toml | 12 +- primitives/Cargo.toml | 30 +- primitives/test-helpers/Cargo.toml | 6 +- rpc/Cargo.toml | 46 +- runtime/common/Cargo.toml | 60 +- runtime/common/slot_range_helper/Cargo.toml | 4 +- runtime/kusama/Cargo.toml | 132 +- runtime/kusama/constants/Cargo.toml | 4 +- runtime/metrics/Cargo.toml | 4 +- runtime/parachains/Cargo.toml | 52 +- runtime/polkadot/Cargo.toml | 124 +- runtime/polkadot/constants/Cargo.toml | 4 +- runtime/rococo/Cargo.toml | 92 +- runtime/rococo/constants/Cargo.toml | 4 +- runtime/test-runtime/Cargo.toml | 80 +- runtime/test-runtime/constants/Cargo.toml | 4 +- runtime/westend/Cargo.toml | 124 +- runtime/westend/constants/Cargo.toml | 4 +- statement-table/Cargo.toml | 2 +- utils/generate-bags/Cargo.toml | 4 +- utils/remote-ext-tests/bags-list/Cargo.toml | 8 +- utils/staking-miner/Cargo.toml | 34 +- xcm/pallet-xcm-benchmarks/Cargo.toml | 20 +- xcm/pallet-xcm/Cargo.toml | 14 +- xcm/xcm-builder/Cargo.toml | 18 +- xcm/xcm-executor/Cargo.toml | 14 +- xcm/xcm-executor/integration-tests/Cargo.toml | 14 +- xcm/xcm-simulator/Cargo.toml | 6 +- xcm/xcm-simulator/example/Cargo.toml | 14 +- xcm/xcm-simulator/fuzzer/Cargo.toml | 14 +- 118 files changed, 1514 insertions(+), 1875 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3c456cb2bcc1..6f104702060d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,7 +94,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -238,7 +238,7 @@ dependencies = [ "slab", "socket2 0.4.4", "waker-fn", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -273,7 +273,7 @@ dependencies = [ "libc", "once_cell", "signal-hook", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -341,7 +341,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb4401f0a3622dad2e0763fa79e0eb328bc70fb7dccfdd645341f00d671247d6" dependencies = [ - "bytes 1.1.0", + "bytes", "futures-sink", "futures-util", "memchr", @@ -354,7 +354,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0de5164e5edbf51c45fb8c2d9664ae1c095cce1b265ecf7569093c0d66ef690" dependencies = [ - "bytes 1.1.0", + "bytes", "futures-sink", "futures-util", "memchr", @@ -384,7 +384,7 @@ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ "hermit-abi", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -395,9 +395,9 @@ checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" [[package]] name = "backtrace" -version = "0.3.63" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "321629d8ba6513061f26707241fa9bc89524ff1cd7a915a97ef0c62c666ce1b6" +checksum = "5e121dee8023ce33ab248d9ce1493df03c3b38a659b240096fcbd7048ff9c31f" dependencies = [ "addr2line", "cc", @@ -450,7 +450,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "beefy-primitives", "fnv", @@ -483,15 +483,12 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "beefy-gadget", "beefy-primitives", "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", - "jsonrpc-pubsub", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -506,12 +503,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "scale-info", @@ -931,16 +928,6 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" -[[package]] -name = "bytes" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" -dependencies = [ - "byteorder", - "iovec", -] - [[package]] name = "bytes" version = "1.1.0" @@ -1066,7 +1053,7 @@ dependencies = [ "num-integer", "num-traits", "time", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -1635,7 +1622,7 @@ checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780" dependencies = [ "libc", "redox_users", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -1646,7 +1633,7 @@ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" dependencies = [ "libc", "redox_users", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -1800,18 +1787,18 @@ dependencies = [ [[package]] name = "enumflags2" -version = "0.6.4" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0" +checksum = "1b3ab37dc79652c9d85f1f7b6070d77d321d2467f5fe7b00d6b7a86c57b092ae" dependencies = [ "enumflags2_derive", ] [[package]] name = "enumflags2_derive" -version = "0.6.4" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce" +checksum = "f58dc3c5e468259f19f2d46304a6b28f1c3d034442e14b322d2b850e36f6d5ae" dependencies = [ "proc-macro2", "quote", @@ -1878,7 +1865,7 @@ checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" dependencies = [ "errno-dragonfly", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -1980,7 +1967,7 @@ checksum = "f5aa1e3ae159e592ad222dc90c5acbad632b527779ba88486abe92782ab268bd" dependencies = [ "expander 0.0.4", "indexmap", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -2057,7 +2044,7 @@ dependencies = [ "cc", "lazy_static", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2115,7 +2102,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", ] @@ -2127,13 +2114,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" dependencies = [ "matches", - "percent-encoding 2.1.0", + "percent-encoding", ] [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -2155,7 +2142,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "Inflector", "chrono", @@ -2200,9 +2187,9 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -2211,7 +2198,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2227,7 +2214,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -2255,7 +2242,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "bitflags", "frame-metadata", @@ -2284,7 +2271,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2296,10 +2283,10 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support-procedural-tools-derive", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -2308,7 +2295,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "proc-macro2", "quote", @@ -2318,7 +2305,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2341,7 +2328,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -2352,7 +2339,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "log", @@ -2369,7 +2356,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -2384,7 +2371,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "sp-api", @@ -2393,7 +2380,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "sp-api", @@ -2416,7 +2403,7 @@ dependencies = [ "lazy_static", "libc", "libloading 0.5.2", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2426,7 +2413,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2435,22 +2422,6 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394" -[[package]] -name = "fuchsia-zircon" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -dependencies = [ - "bitflags", - "fuchsia-zircon-sys", -] - -[[package]] -name = "fuchsia-zircon-sys" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" - [[package]] name = "funty" version = "2.0.0" @@ -2573,7 +2544,6 @@ version = "0.3.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" dependencies = [ - "futures 0.1.31", "futures-channel", "futures-core", "futures-io", @@ -2589,7 +2559,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "chrono", "frame-election-provider-support", @@ -2675,7 +2645,7 @@ dependencies = [ "libc", "libgit2-sys", "log", - "url 2.2.2", + "url", ] [[package]] @@ -2727,7 +2697,7 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9f1f717ddc7b2ba36df7e871fd88db79326551d3d6f1fc406fbfd28b582ff8e" dependencies = [ - "bytes 1.1.0", + "bytes", "fnv", "futures-core", "futures-sink", @@ -2879,7 +2849,7 @@ checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" dependencies = [ "libc", "match_cfg", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2888,7 +2858,7 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b" dependencies = [ - "bytes 1.1.0", + "bytes", "fnv", "itoa 0.4.8", ] @@ -2899,7 +2869,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6" dependencies = [ - "bytes 1.1.0", + "bytes", "http", "pin-project-lite 0.2.7", ] @@ -2937,7 +2907,7 @@ version = "0.14.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2" dependencies = [ - "bytes 1.1.0", + "bytes", "futures-channel", "futures-core", "futures-util", @@ -2978,24 +2948,13 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ - "bytes 1.1.0", + "bytes", "hyper", "native-tls", "tokio", "tokio-native-tls", ] -[[package]] -name = "idna" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" -dependencies = [ - "matches", - "unicode-bidi", - "unicode-normalization", -] - [[package]] name = "idna" version = "0.2.3" @@ -3015,7 +2974,7 @@ checksum = "2273e421f7c4f0fc99e1934fe4776f59d8df2972f4199d703fc0da9f2a9f73de" dependencies = [ "if-addrs-sys", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -3041,7 +3000,7 @@ dependencies = [ "ipnet", "libc", "log", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -3120,16 +3079,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f6ef6787e7f0faedc040f95716bdd0e62bcfcf4ba93da053b62dea2691c13864" dependencies = [ - "winapi 0.3.9", -] - -[[package]] -name = "iovec" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -dependencies = [ - "libc", + "winapi", ] [[package]] @@ -3146,7 +3096,7 @@ checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7" dependencies = [ "socket2 0.3.19", "widestring", - "winapi 0.3.9", + "winapi", "winreg 0.6.2", ] @@ -3195,22 +3145,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "jsonrpc-client-transports" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2b99d4207e2a04fb4581746903c2bb7eb376f88de9c699d0f3e10feeac0cd3a" -dependencies = [ - "derive_more", - "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-pubsub", - "log", - "serde", - "serde_json", - "url 1.7.2", -] - [[package]] name = "jsonrpc-core" version = "18.0.0" @@ -3226,140 +3160,30 @@ dependencies = [ "serde_json", ] -[[package]] -name = "jsonrpc-core-client" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b51da17abecbdab3e3d4f26b01c5ec075e88d3abe3ab3b05dc9aa69392764ec0" -dependencies = [ - "futures 0.3.21", - "jsonrpc-client-transports", -] - -[[package]] -name = "jsonrpc-derive" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b939a78fa820cdfcb7ee7484466746a7377760970f6f9c6fe19f9edcc8a38d2" -dependencies = [ - "proc-macro-crate 0.1.5", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "jsonrpc-http-server" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1dea6e07251d9ce6a552abfb5d7ad6bc290a4596c8dcc3d795fae2bbdc1f3ff" -dependencies = [ - "futures 0.3.21", - "hyper", - "jsonrpc-core", - "jsonrpc-server-utils", - "log", - "net2", - "parking_lot 0.11.2", - "unicase", -] - -[[package]] -name = "jsonrpc-ipc-server" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "382bb0206323ca7cda3dcd7e245cea86d37d02457a02a975e3378fb149a48845" -dependencies = [ - "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-server-utils", - "log", - "parity-tokio-ipc", - "parking_lot 0.11.2", - "tower-service", -] - -[[package]] -name = "jsonrpc-pubsub" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "240f87695e6c6f62fb37f05c02c04953cf68d6408b8c1c89de85c7a0125b1011" -dependencies = [ - "futures 0.3.21", - "jsonrpc-core", - "lazy_static", - "log", - "parking_lot 0.11.2", - "rand 0.7.3", - "serde", -] - -[[package]] -name = "jsonrpc-server-utils" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4fdea130485b572c39a460d50888beb00afb3e35de23ccd7fad8ff19f0e0d4" -dependencies = [ - "bytes 1.1.0", - "futures 0.3.21", - "globset", - "jsonrpc-core", - "lazy_static", - "log", - "tokio", - "tokio-stream", - "tokio-util", - "unicase", -] - -[[package]] -name = "jsonrpc-ws-server" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f892c7d766369475ab7b0669f417906302d7c0fb521285c0a0c92e52e7c8e946" -dependencies = [ - "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-server-utils", - "log", - "parity-ws", - "parking_lot 0.11.2", - "slab", -] - [[package]] name = "jsonrpsee" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6373a33d987866ccfe1af4bc11b089dce941764313f9fd8b7cf13fcb51b72dc5" -dependencies = [ - "jsonrpsee-types 0.4.1", - "jsonrpsee-utils", - "jsonrpsee-ws-client 0.4.1", -] - -[[package]] -name = "jsonrpsee" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05fd8cd6c6b1bbd06881d2cf88f1fc83cc36c98f2219090f839115fb4a956cb9" +checksum = "f0d0b8cc1959f8c05256ace093b2317482da9127f1d9227564f47e7e6bf9bda8" dependencies = [ "jsonrpsee-core", + "jsonrpsee-http-server", "jsonrpsee-proc-macros", - "jsonrpsee-types 0.8.0", - "jsonrpsee-ws-client 0.8.0", + "jsonrpsee-types", + "jsonrpsee-ws-client", + "jsonrpsee-ws-server", ] [[package]] name = "jsonrpsee-client-transport" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3303cdf246e6ab76e2866fb3d9acb6c76a068b1b28bd923a1b7a8122257ad7b5" +checksum = "fa370c2c717d798c3c0a315ae3f0a707a388c6963c11f9da7dbbe1d3f7392f5f" dependencies = [ "futures 0.3.21", "http", "jsonrpsee-core", - "jsonrpsee-types 0.8.0", + "jsonrpsee-types", "pin-project 1.0.10", "rustls-native-certs 0.6.1", "soketto", @@ -3373,18 +3197,21 @@ dependencies = [ [[package]] name = "jsonrpsee-core" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f220b5a238dc7992b90f1144fbf6eaa585872c9376afe6fe6863ffead6191bf3" +checksum = "22abc3274b265dcefe2e26c4beecf9fda4fffa48cf94930443a6c73678f020d5" dependencies = [ "anyhow", "arrayvec 0.7.2", + "async-channel", "async-trait", "beef", "futures-channel", "futures-util", "hyper", - "jsonrpsee-types 0.8.0", + "jsonrpsee-types", + "parking_lot 0.12.0", + "rand 0.8.5", "rustc-hash", "serde", "serde_json", @@ -3395,41 +3222,42 @@ dependencies = [ ] [[package]] -name = "jsonrpsee-proc-macros" -version = "0.8.0" +name = "jsonrpsee-http-server" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4299ebf790ea9de1cb72e73ff2ae44c723ef264299e5e2d5ef46a371eb3ac3d8" +checksum = "8dd99cccd549e3c3bb9dc6a490d7e5cf507f4d2b0177abd16f9c63b3ee1c2d67" dependencies = [ - "proc-macro-crate 1.1.3", - "proc-macro2", - "quote", - "syn", + "futures-channel", + "futures-util", + "globset", + "hyper", + "jsonrpsee-core", + "jsonrpsee-types", + "lazy_static", + "serde_json", + "socket2 0.4.4", + "tokio", + "tracing", + "unicase", ] [[package]] -name = "jsonrpsee-types" -version = "0.4.1" +name = "jsonrpsee-proc-macros" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62f778cf245158fbd8f5d50823a2e9e4c708a40be164766bd35e9fb1d86715b2" +checksum = "63e171d8071079c8ccdce1b4ab34411c5afa6158d57db7963311ad3c6d073cb1" dependencies = [ - "anyhow", - "async-trait", - "beef", - "futures-channel", - "futures-util", - "hyper", - "log", - "serde", - "serde_json", - "soketto", - "thiserror", + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", ] [[package]] name = "jsonrpsee-types" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1b3f601bbbe45cd63f5407b6f7d7950e08a7d4f82aa699ff41a4a5e9e54df58" +checksum = "9f4c45d2e2aa1db4c7d7d7dbaabc10a5b5258d99cd9d42fbfd5260b76f80c324" dependencies = [ "anyhow", "beef", @@ -3440,49 +3268,32 @@ dependencies = [ ] [[package]] -name = "jsonrpsee-utils" -version = "0.4.1" +name = "jsonrpsee-ws-client" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0109c4f972058f3b1925b73a17210aff7b63b65967264d0045d15ee88fe84f0c" +checksum = "31b58983485b2b626c276f1eb367d62dae82132451b281072a7bfa536a33ddf3" dependencies = [ - "arrayvec 0.7.2", - "beef", - "jsonrpsee-types 0.4.1", + "jsonrpsee-client-transport", + "jsonrpsee-core", + "jsonrpsee-types", ] [[package]] -name = "jsonrpsee-ws-client" -version = "0.4.1" +name = "jsonrpsee-ws-server" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "559aa56fc402af206c00fc913dc2be1d9d788dcde045d14df141a535245d35ef" +checksum = "84fbcab8488704be093f682540b0b80c623e1683a1d832d67b63bf52de9dceac" dependencies = [ - "arrayvec 0.7.2", - "async-trait", - "fnv", - "futures 0.3.21", - "http", - "jsonrpsee-types 0.4.1", - "log", - "pin-project 1.0.10", - "rustls-native-certs 0.5.0", - "serde", + "async-channel", + "futures-channel", + "futures-util", + "jsonrpsee-core", + "jsonrpsee-types", "serde_json", "soketto", - "thiserror", "tokio", - "tokio-rustls 0.22.0", "tokio-util", -] - -[[package]] -name = "jsonrpsee-ws-client" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aff425cee7c779e33920913bc695447416078ee6d119f443f3060feffa4e86b5" -dependencies = [ - "jsonrpsee-client-transport", - "jsonrpsee-core", - "jsonrpsee-types 0.8.0", + "tracing", ] [[package]] @@ -3503,16 +3314,6 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" -[[package]] -name = "kernel32-sys" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] - [[package]] name = "kusama-runtime" version = "0.9.18" @@ -3711,7 +3512,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" dependencies = [ "cc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -3721,7 +3522,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "afe203d669ec979b7128619bae5a63b7b42e9203c1b29146079ee05e2f604b52" dependencies = [ "cfg-if 1.0.0", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -3737,7 +3538,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3bec54343492ba5940a6c555e512c6721139835d28c59bc22febece72dfd0d9d" dependencies = [ "atomic", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "lazy_static", "libp2p-core", @@ -3857,7 +3658,7 @@ dependencies = [ "asynchronous-codec 0.6.0", "base64", "byteorder", - "bytes 1.1.0", + "bytes", "fnv", "futures 0.3.21", "hex_fmt", @@ -3899,7 +3700,7 @@ checksum = "a2297dc0ca285f3a09d1368bde02449e539b46f94d32d53233f53f6625bcd3ba" dependencies = [ "arrayvec 0.5.2", "asynchronous-codec 0.6.0", - "bytes 1.1.0", + "bytes", "either", "fnv", "futures 0.3.21", @@ -3959,7 +3760,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f2cd64ef597f40e14bfce0497f50ecb63dd6d201c61796daeb4227078834fbf" dependencies = [ "asynchronous-codec 0.6.0", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "libp2p-core", "log", @@ -3976,7 +3777,7 @@ version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8772c7a99088221bb7ca9c5c0574bf55046a7ab4c319f3619b275f28c8fb87a" dependencies = [ - "bytes 1.1.0", + "bytes", "curve25519-dalek 3.2.0", "futures 0.3.21", "lazy_static", @@ -4014,7 +3815,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5fba1a6ff33e4a274c89a3b1d78b9f34f32af13265cc5c46c16938262d4e945a" dependencies = [ "asynchronous-codec 0.6.0", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "libp2p-core", "log", @@ -4045,7 +3846,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2852b61c90fa8ce3c8fcc2aba76e6cefc20d648f9df29157d6b3a916278ef3e3" dependencies = [ "asynchronous-codec 0.6.0", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "futures-timer", "libp2p-core", @@ -4090,7 +3891,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a877a4ced6d46bf84677e1974e8cf61fb434af73b2e96fb48d6cb6223a4634d8" dependencies = [ "async-trait", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "libp2p-core", "libp2p-swarm", @@ -4185,7 +3986,7 @@ dependencies = [ "quicksink", "rw-stream-sink", "soketto", - "url 2.2.2", + "url", "webpki-roots 0.21.1", ] @@ -4442,7 +4243,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -4561,25 +4362,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "mio" -version = "0.6.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" -dependencies = [ - "cfg-if 0.1.10", - "fuchsia-zircon", - "fuchsia-zircon-sys", - "iovec", - "kernel32-sys", - "libc", - "log", - "miow 0.2.2", - "net2", - "slab", - "winapi 0.2.8", -] - [[package]] name = "mio" version = "0.8.0" @@ -4588,33 +4370,9 @@ checksum = "ba272f85fa0b41fc91872be579b3bbe0f56b792aa361a380eb669469f68dafb2" dependencies = [ "libc", "log", - "miow 0.3.7", + "miow", "ntapi", - "winapi 0.3.9", -] - -[[package]] -name = "mio-extras" -version = "2.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" -dependencies = [ - "lazycell", - "log", - "mio 0.6.23", - "slab", -] - -[[package]] -name = "miow" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" -dependencies = [ - "kernel32-sys", - "net2", - "winapi 0.2.8", - "ws2_32-sys", + "winapi", ] [[package]] @@ -4623,7 +4381,7 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -4643,11 +4401,11 @@ dependencies = [ "byteorder", "data-encoding", "multihash 0.14.0", - "percent-encoding 2.1.0", + "percent-encoding", "serde", "static_assertions", "unsigned-varint 0.7.1", - "url 2.2.2", + "url", ] [[package]] @@ -4697,7 +4455,7 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "424f6e86263cd5294cbd7f1e95746b95aca0e0d66bff31e5a40d6baa87b4aa99" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro-error", "proc-macro2", "quote", @@ -4717,7 +4475,7 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56a336acba8bc87c8876f6425407dbbe6c417bf478b22015f8fb0994ef3bc0ab" dependencies = [ - "bytes 1.1.0", + "bytes", "futures 0.3.21", "log", "pin-project 1.0.10", @@ -4787,17 +4545,6 @@ dependencies = [ "tempfile", ] -[[package]] -name = "net2" -version = "0.2.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae" -dependencies = [ - "cfg-if 0.1.10", - "libc", - "winapi 0.3.9", -] - [[package]] name = "nix" version = "0.23.1" @@ -4840,7 +4587,7 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -5035,7 +4782,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -5056,7 +4803,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5070,7 +4817,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -5086,7 +4833,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -5101,7 +4848,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5125,7 +4872,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5145,7 +4892,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-election-provider-support", "frame-support", @@ -5159,13 +4906,12 @@ dependencies = [ "sp-std", "sp-storage", "sp-tracing", - "tokio", ] [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5180,7 +4926,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "beefy-primitives", "frame-support", @@ -5196,7 +4942,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5221,7 +4967,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5303,7 +5049,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5322,7 +5068,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5339,7 +5085,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5355,7 +5101,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5378,7 +5124,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5396,7 +5142,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5411,7 +5157,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5434,7 +5180,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5450,7 +5196,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5470,7 +5216,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5487,7 +5233,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5504,7 +5250,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5522,7 +5268,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -5538,14 +5284,13 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "jsonrpsee", "pallet-mmr-primitives", "parity-scale-codec", "serde", + "serde_json", "sp-api", "sp-blockchain", "sp-core", @@ -5555,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5570,7 +5315,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -5584,7 +5329,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -5601,7 +5346,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5624,7 +5369,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5640,7 +5385,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5655,7 +5400,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -5669,7 +5414,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5685,7 +5430,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -5706,7 +5451,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5722,7 +5467,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -5736,7 +5481,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5759,9 +5504,9 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -5770,7 +5515,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "log", "sp-arithmetic", @@ -5779,7 +5524,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -5793,7 +5538,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5811,7 +5556,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5830,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-support", "frame-system", @@ -5847,11 +5592,10 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "anyhow", + "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", "sp-api", @@ -5864,7 +5608,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5875,7 +5619,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5892,7 +5636,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -5908,7 +5652,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-benchmarking", "frame-support", @@ -6006,7 +5750,7 @@ version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c45ed1f39709f5a89338fab50e59816b2e8815f5bb58276e7ddf9afd495f73f8" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -6018,20 +5762,6 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" -[[package]] -name = "parity-tokio-ipc" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9981e32fb75e004cc148f5fb70342f393830e0a4aa62e3cc93b50976218d42b6" -dependencies = [ - "futures 0.3.21", - "libc", - "log", - "rand 0.7.3", - "tokio", - "winapi 0.3.9", -] - [[package]] name = "parity-util-mem" version = "0.11.0" @@ -6047,7 +5777,7 @@ dependencies = [ "smallvec", "tikv-jemalloc-ctl", "tikv-jemallocator", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -6076,24 +5806,6 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be5e13c266502aadf83426d87d81a0f5d1ef45b8027f5a471c360abfe4bfae92" -[[package]] -name = "parity-ws" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5983d3929ad50f12c3eb9a6743f19d691866ecd44da74c0a3308c3f8a56df0c6" -dependencies = [ - "byteorder", - "bytes 0.4.12", - "httparse", - "log", - "mio 0.6.23", - "mio-extras", - "rand 0.7.3", - "sha-1 0.8.2", - "slab", - "url 2.2.2", -] - [[package]] name = "parking" version = "2.0.0" @@ -6132,7 +5844,7 @@ dependencies = [ "libc", "redox_syscall", "smallvec", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -6178,12 +5890,6 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" -[[package]] -name = "percent-encoding" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" - [[package]] name = "percent-encoding" version = "2.1.0" @@ -7181,7 +6887,7 @@ version = "0.9.18" dependencies = [ "assert_matches", "expander 0.0.6", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -7263,7 +6969,7 @@ version = "0.9.18" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", - "jsonrpc-core", + "jsonrpsee", "pallet-mmr-rpc", "pallet-transaction-payment-rpc", "polkadot-primitives", @@ -7846,7 +7552,7 @@ dependencies = [ "libc", "log", "wepoll-ffi", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -7950,15 +7656,6 @@ dependencies = [ "uint", ] -[[package]] -name = "proc-macro-crate" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" -dependencies = [ - "toml", -] - [[package]] name = "proc-macro-crate" version = "1.1.3" @@ -8033,7 +7730,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001" dependencies = [ - "bytes 1.1.0", + "bytes", "prost-derive", ] @@ -8043,7 +7740,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5" dependencies = [ - "bytes 1.1.0", + "bytes", "heck 0.3.3", "itertools", "lazy_static", @@ -8076,7 +7773,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a" dependencies = [ - "bytes 1.1.0", + "bytes", "prost", ] @@ -8360,7 +8057,7 @@ dependencies = [ "bitflags", "libc", "mach", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -8385,10 +8082,10 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "env_logger 0.9.0", - "jsonrpsee 0.8.0", + "jsonrpsee", "log", "parity-scale-codec", "serde", @@ -8405,7 +8102,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -8415,7 +8112,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb" dependencies = [ "base64", - "bytes 1.1.0", + "bytes", "encoding_rs", "futures-core", "futures-util", @@ -8430,14 +8127,14 @@ dependencies = [ "log", "mime", "native-tls", - "percent-encoding 2.1.0", + "percent-encoding", "pin-project-lite 0.2.7", "serde", "serde_json", "serde_urlencoded", "tokio", "tokio-native-tls", - "url 2.2.2", + "url", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -8472,7 +8169,7 @@ dependencies = [ "spin", "untrusted", "web-sys", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -8579,7 +8276,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -8629,7 +8326,7 @@ dependencies = [ "io-lifetimes", "libc", "linux-raw-sys", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -8734,7 +8431,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "log", "sp-core", @@ -8745,7 +8442,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "futures 0.3.21", @@ -8772,7 +8469,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8795,7 +8492,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8811,7 +8508,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8828,9 +8525,9 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -8839,7 +8536,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "chrono", "clap", @@ -8877,7 +8574,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "fnv", "futures 0.3.21", @@ -8905,7 +8602,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "hash-db", "kvdb", @@ -8930,7 +8627,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "futures 0.3.21", @@ -8954,7 +8651,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "fork-tree", @@ -8997,12 +8694,10 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "jsonrpsee", "sc-consensus-babe", "sc-consensus-epochs", "sc-rpc-api", @@ -9021,7 +8716,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9034,7 +8729,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "futures 0.3.21", @@ -9059,7 +8754,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "sc-client-api", "sp-authorship", @@ -9070,7 +8765,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "lazy_static", "lru 0.7.4", @@ -9097,7 +8792,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "environmental", "parity-scale-codec", @@ -9114,7 +8809,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "log", "parity-scale-codec", @@ -9130,7 +8825,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9148,7 +8843,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "ahash", "async-trait", @@ -9188,14 +8883,11 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "finality-grandpa", "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", - "jsonrpc-pubsub", + "jsonrpsee", "log", "parity-scale-codec", "sc-client-api", @@ -9212,7 +8904,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "ansi_term", "futures 0.3.21", @@ -9229,7 +8921,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "hex", @@ -9244,12 +8936,12 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "asynchronous-codec 0.5.0", "bitflags", - "bytes 1.1.0", + "bytes", "cid", "either", "fnv", @@ -9293,7 +8985,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "ahash", "futures 0.3.21", @@ -9310,9 +9002,9 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "bytes 1.1.0", + "bytes", "fnv", "futures 0.3.21", "futures-timer", @@ -9338,7 +9030,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "futures 0.3.21", "libp2p", @@ -9351,7 +9043,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9360,16 +9052,17 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ + "anyhow", + "async-trait", "futures 0.3.21", "hash-db", "jsonrpc-core", - "jsonrpc-pubsub", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.0", - "sc-block-builder", "sc-chain-spec", "sc-client-api", "sc-rpc-api", @@ -9391,13 +9084,11 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ + "anyhow", "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", - "jsonrpc-pubsub", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -9417,14 +9108,10 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-http-server", - "jsonrpc-ipc-server", - "jsonrpc-pubsub", - "jsonrpc-ws-server", + "anyhow", + "jsonrpsee", "log", "serde_json", "substrate-prometheus-endpoint", @@ -9434,7 +9121,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "directories", @@ -9442,8 +9129,7 @@ dependencies = [ "futures 0.3.21", "futures-timer", "hash-db", - "jsonrpc-core", - "jsonrpc-pubsub", + "jsonrpsee", "log", "parity-scale-codec", "parity-util-mem", @@ -9498,7 +9184,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "log", "parity-scale-codec", @@ -9512,11 +9198,10 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "anyhow", + "jsonrpsee", "parity-scale-codec", "sc-chain-spec", "sc-client-api", @@ -9533,7 +9218,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "chrono", "futures 0.3.21", @@ -9551,7 +9236,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "ansi_term", "atty", @@ -9582,9 +9267,9 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -9593,7 +9278,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9620,7 +9305,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "futures 0.3.21", "log", @@ -9633,7 +9318,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9663,7 +9348,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b7805950c36512db9e3251c970bb7ac425f326716941862205d612ab3b5e46e2" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -9676,7 +9361,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" dependencies = [ "lazy_static", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -10114,7 +9799,7 @@ checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" dependencies = [ "cfg-if 1.0.0", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -10124,7 +9809,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -10134,7 +9819,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" dependencies = [ "base64", - "bytes 1.1.0", + "bytes", "flate2", "futures 0.3.21", "httparse", @@ -10146,7 +9831,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "hash-db", "log", @@ -10163,10 +9848,10 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "blake2 0.10.2", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -10175,7 +9860,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "scale-info", @@ -10188,7 +9873,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "integer-sqrt", "num-traits", @@ -10203,7 +9888,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "scale-info", @@ -10216,7 +9901,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "parity-scale-codec", @@ -10228,7 +9913,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "sp-api", @@ -10240,7 +9925,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "futures 0.3.21", "log", @@ -10258,7 +9943,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "futures 0.3.21", @@ -10277,7 +9962,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "merlin", @@ -10300,7 +9985,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "scale-info", @@ -10314,7 +9999,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -10326,7 +10011,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "base58", "bitflags", @@ -10372,7 +10057,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "blake2 0.10.2", "byteorder", @@ -10386,7 +10071,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "proc-macro2", "quote", @@ -10397,7 +10082,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10406,7 +10091,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "proc-macro2", "quote", @@ -10416,7 +10101,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "environmental", "parity-scale-codec", @@ -10427,7 +10112,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "finality-grandpa", "log", @@ -10445,7 +10130,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10459,7 +10144,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "futures 0.3.21", "hash-db", @@ -10484,7 +10169,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "lazy_static", "sp-core", @@ -10495,7 +10180,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "futures 0.3.21", @@ -10512,7 +10197,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "thiserror", "zstd", @@ -10521,7 +10206,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "scale-info", @@ -10535,7 +10220,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "sp-api", "sp-core", @@ -10545,7 +10230,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "backtrace", "lazy_static", @@ -10555,7 +10240,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "rustc-hash", "serde", @@ -10565,7 +10250,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "either", "hash256-std-hasher", @@ -10587,7 +10272,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10604,10 +10289,10 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "Inflector", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -10616,7 +10301,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "serde", "serde_json", @@ -10625,7 +10310,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "scale-info", @@ -10639,7 +10324,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "scale-info", @@ -10650,7 +10335,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "hash-db", "log", @@ -10672,12 +10357,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10690,7 +10375,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "log", "sp-core", @@ -10703,7 +10388,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "futures-timer", @@ -10719,7 +10404,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "sp-std", @@ -10731,7 +10416,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "sp-api", "sp-runtime", @@ -10740,7 +10425,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "log", @@ -10756,7 +10441,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "hash-db", "memory-db", @@ -10772,7 +10457,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10789,7 +10474,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10800,7 +10485,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "impl-trait-for-tuples", "log", @@ -10855,7 +10540,7 @@ dependencies = [ "frame-election-provider-support", "frame-support", "frame-system", - "jsonrpsee 0.8.0", + "jsonrpsee", "kusama-runtime", "log", "pallet-balances", @@ -11001,7 +10686,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "platforms", ] @@ -11009,18 +10694,17 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "jsonrpsee", "log", "parity-scale-codec", "sc-client-api", "sc-rpc-api", "sc-transaction-pool-api", + "serde_json", "sp-api", "sp-block-builder", "sp-blockchain", @@ -11031,7 +10715,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "futures-util", "hyper", @@ -11044,11 +10728,10 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a09b82772b0597cdae224f4b124d660dda9e82b" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "anyhow", + "jsonrpsee", "log", "parity-scale-codec", "sc-client-api", @@ -11067,7 +10750,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "async-trait", "futures 0.3.21", @@ -11093,7 +10776,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -11103,9 +10786,9 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -11114,7 +10797,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "ansi_term", "build-helper", @@ -11211,7 +10894,7 @@ dependencies = [ "rand 0.8.5", "redox_syscall", "remove_dir_all", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -11440,7 +11123,7 @@ checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" dependencies = [ "libc", "wasi 0.10.0+wasi-snapshot-preview1", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -11492,10 +11175,10 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee" dependencies = [ - "bytes 1.1.0", + "bytes", "libc", "memchr", - "mio 0.8.0", + "mio", "num_cpus", "once_cell", "parking_lot 0.12.0", @@ -11503,7 +11186,7 @@ dependencies = [ "signal-hook-registry", "socket2 0.4.4", "tokio-macros", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -11549,17 +11232,6 @@ dependencies = [ "webpki 0.22.0", ] -[[package]] -name = "tokio-stream" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3" -dependencies = [ - "futures-core", - "pin-project-lite 0.2.7", - "tokio", -] - [[package]] name = "tokio-tungstenite" version = "0.17.1" @@ -11578,7 +11250,7 @@ version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0" dependencies = [ - "bytes 1.1.0", + "bytes", "futures-core", "futures-io", "futures-sink", @@ -11662,7 +11334,7 @@ version = "0.9.17" dependencies = [ "assert_matches", "expander 0.0.6", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -11765,7 +11437,7 @@ dependencies = [ "futures-channel", "futures-io", "futures-util", - "idna 0.2.3", + "idna", "ipnet", "lazy_static", "log", @@ -11773,7 +11445,7 @@ dependencies = [ "smallvec", "thiserror", "tinyvec", - "url 2.2.2", + "url", ] [[package]] @@ -11804,10 +11476,10 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#62fcc8abb7679221814fd3a76d36ad5eafb65657" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" dependencies = [ "clap", - "jsonrpsee 0.4.1", + "jsonrpsee", "log", "parity-scale-codec", "remote-externalities", @@ -11855,14 +11527,14 @@ checksum = "d96a2dea40e7570482f28eb57afbe42d97551905da6a9400acc5c328d24004f5" dependencies = [ "base64", "byteorder", - "bytes 1.1.0", + "bytes", "http", "httparse", "log", "rand 0.8.5", "sha-1 0.10.0", "thiserror", - "url 2.2.2", + "url", "utf-8", ] @@ -11961,7 +11633,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35581ff83d4101e58b582e607120c7f5ffb17e632a980b1f38334d76b36908b2" dependencies = [ "asynchronous-codec 0.5.0", - "bytes 1.1.0", + "bytes", "futures-io", "futures-util", ] @@ -11973,7 +11645,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d86a8dc7f45e4c1b0d30e43038c38f274e77af056aa5f74b93c2cf9eb3c1c836" dependencies = [ "asynchronous-codec 0.6.0", - "bytes 1.1.0", + "bytes", "futures-io", "futures-util", ] @@ -11984,17 +11656,6 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" -[[package]] -name = "url" -version = "1.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" -dependencies = [ - "idna 0.1.5", - "matches", - "percent-encoding 1.0.1", -] - [[package]] name = "url" version = "2.2.2" @@ -12002,9 +11663,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" dependencies = [ "form_urlencoded", - "idna 0.2.3", + "idna", "matches", - "percent-encoding 2.1.0", + "percent-encoding", ] [[package]] @@ -12079,7 +11740,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" dependencies = [ "same-file", - "winapi 0.3.9", + "winapi", "winapi-util", ] @@ -12273,7 +11934,7 @@ dependencies = [ "wasmtime-environ", "wasmtime-jit", "wasmtime-runtime", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -12292,7 +11953,7 @@ dependencies = [ "serde", "sha2 0.9.8", "toml", - "winapi 0.3.9", + "winapi", "zstd", ] @@ -12357,7 +12018,7 @@ dependencies = [ "thiserror", "wasmtime-environ", "wasmtime-runtime", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -12382,7 +12043,7 @@ dependencies = [ "rustix", "thiserror", "wasmtime-environ", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -12571,12 +12232,6 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c" -[[package]] -name = "winapi" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" - [[package]] name = "winapi" version = "0.3.9" @@ -12587,12 +12242,6 @@ dependencies = [ "winapi-x86_64-pc-windows-gnu", ] -[[package]] -name = "winapi-build" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" - [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" @@ -12605,7 +12254,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -12663,7 +12312,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -12672,17 +12321,7 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" dependencies = [ - "winapi 0.3.9", -] - -[[package]] -name = "ws2_32-sys" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" -dependencies = [ - "winapi 0.2.8", - "winapi-build", + "winapi", ] [[package]] @@ -12899,7 +12538,7 @@ dependencies = [ "tokio", "tokio-tungstenite", "tracing-gum", - "url 2.2.2", + "url", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 4443e9c8f881..1f9d3d053b0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ assert_cmd = "2.0.4" nix = "0.23.1" tempfile = "3.2.0" tokio = "1.17.0" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-core-primitives = { path = "core-primitives" } [workspace] diff --git a/bridges/bin/millau/node/Cargo.toml b/bridges/bin/millau/node/Cargo.toml index 3825b92b703c..0a6d616263b7 100644 --- a/bridges/bin/millau/node/Cargo.toml +++ b/bridges/bin/millau/node/Cargo.toml @@ -23,38 +23,38 @@ pallet-bridge-messages = { path = "../../../modules/messages" } # Substrate Dependencies -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -node-inspect = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +node-inspect = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "dp-jsonrpsee-integration-2" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = [] diff --git a/bridges/bin/millau/runtime/Cargo.toml b/bridges/bin/millau/runtime/Cargo.toml index 162404b77e7d..42b63c98d743 100644 --- a/bridges/bin/millau/runtime/Cargo.toml +++ b/bridges/bin/millau/runtime/Cargo.toml @@ -32,45 +32,45 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] bridge-runtime-common = { path = "../../runtime-common", features = ["integrity-test"] } static_assertions = "1.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/bin/rialto-parachain/node/Cargo.toml b/bridges/bin/rialto-parachain/node/Cargo.toml index 41021a35ed2b..38229eaaa34f 100644 --- a/bridges/bin/rialto-parachain/node/Cargo.toml +++ b/bridges/bin/rialto-parachain/node/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [[bin]] name = 'rialto-parachain-collator' @@ -32,44 +32,44 @@ jsonrpc-core = '18.0' rialto-parachain-runtime = { path = '../runtime' } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } ## Substrate Client Dependencies -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", features = ['wasmtime'] } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", features = ['wasmtime'] , branch = "dp-jsonrpsee-integration-2" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } ## Substrate Primitive Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } # Cumulus dependencies cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus", branch = "master" } @@ -88,4 +88,4 @@ polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "maste polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } \ No newline at end of file +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } diff --git a/bridges/bin/rialto-parachain/runtime/Cargo.toml b/bridges/bin/rialto-parachain/runtime/Cargo.toml index 1d0870fcbcd8..b7aa42e2628a 100644 --- a/bridges/bin/rialto-parachain/runtime/Cargo.toml +++ b/bridges/bin/rialto-parachain/runtime/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [dependencies] codec = { package = 'parity-scale-codec', version = '3.0.0', default-features = false, features = ['derive']} @@ -22,35 +22,35 @@ bp-rialto-parachain = { path = "../../../primitives/chain-rialto-parachain", def # Substrate Dependencies ## Substrate Primitive Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } ## Substrate FRAME Dependencies -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } ## Substrate Pallet Dependencies -pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } # Cumulus Dependencies cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "master", default-features = false } diff --git a/bridges/bin/rialto/node/Cargo.toml b/bridges/bin/rialto/node/Cargo.toml index e44ceb45faa9..c30133473ace 100644 --- a/bridges/bin/rialto/node/Cargo.toml +++ b/bridges/bin/rialto/node/Cargo.toml @@ -28,51 +28,51 @@ rialto-runtime = { path = "../runtime" } # Substrate Dependencies -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -node-inspect = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +node-inspect = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "dp-jsonrpsee-integration-2" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-authorship = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } # Polkadot Dependencies @@ -82,8 +82,8 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, features = [ "full-node", "polkadot-native" ] } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = [] diff --git a/bridges/bin/rialto/runtime/Cargo.toml b/bridges/bin/rialto/runtime/Cargo.toml index 59b9a8e9b575..1a7fae1085e9 100644 --- a/bridges/bin/rialto/runtime/Cargo.toml +++ b/bridges/bin/rialto/runtime/Cargo.toml @@ -31,40 +31,40 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } # Polkadot (parachain) Dependencies @@ -78,7 +78,7 @@ libsecp256k1 = { version = "0.7", features = ["hmac"] } static_assertions = "1.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/bin/runtime-common/Cargo.toml b/bridges/bin/runtime-common/Cargo.toml index d1ec30c0aa4b..81d03761690c 100644 --- a/bridges/bin/runtime-common/Cargo.toml +++ b/bridges/bin/runtime-common/Cargo.toml @@ -25,17 +25,17 @@ pallet-bridge-messages = { path = "../../modules/messages", default-features = f # Substrate dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/fuzz/storage-proof/Cargo.toml b/bridges/fuzz/storage-proof/Cargo.toml index b406054bc6e4..accb6dc236e6 100644 --- a/bridges/fuzz/storage-proof/Cargo.toml +++ b/bridges/fuzz/storage-proof/Cargo.toml @@ -18,8 +18,8 @@ bp-runtime = { path = "../../primitives/runtime" } # Substrate Dependencies -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/bridges/modules/dispatch/Cargo.toml b/bridges/modules/dispatch/Cargo.toml index 98164452b836..90565ec9f66e 100644 --- a/bridges/modules/dispatch/Cargo.toml +++ b/bridges/modules/dispatch/Cargo.toml @@ -18,14 +18,14 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/modules/grandpa/Cargo.toml b/bridges/modules/grandpa/Cargo.toml index eac80375da12..05d5e5976d0c 100644 --- a/bridges/modules/grandpa/Cargo.toml +++ b/bridges/modules/grandpa/Cargo.toml @@ -22,20 +22,20 @@ bp-header-chain = { path = "../../primitives/header-chain", default-features = f # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } # Optional Benchmarking Dependencies bp-test-utils = { path = "../../primitives/test-utils", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/modules/messages/Cargo.toml b/bridges/modules/messages/Cargo.toml index 804f323f10b6..437ebb127211 100644 --- a/bridges/modules/messages/Cargo.toml +++ b/bridges/modules/messages/Cargo.toml @@ -22,16 +22,16 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/modules/shift-session-manager/Cargo.toml b/bridges/modules/shift-session-manager/Cargo.toml index 30a5618b115f..be10b8df611b 100644 --- a/bridges/modules/shift-session-manager/Cargo.toml +++ b/bridges/modules/shift-session-manager/Cargo.toml @@ -12,15 +12,15 @@ scale-info = { version = "2.0.1", default-features = false, features = ["derive" # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/modules/token-swap/Cargo.toml b/bridges/modules/token-swap/Cargo.toml index aad395fb7a30..b8f5e5254138 100644 --- a/bridges/modules/token-swap/Cargo.toml +++ b/bridges/modules/token-swap/Cargo.toml @@ -23,16 +23,16 @@ pallet-bridge-messages = { path = "../messages", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/chain-kusama/Cargo.toml b/bridges/primitives/chain-kusama/Cargo.toml index a676b565c33d..a6ced6377a50 100644 --- a/bridges/primitives/chain-kusama/Cargo.toml +++ b/bridges/primitives/chain-kusama/Cargo.toml @@ -17,11 +17,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/chain-millau/Cargo.toml b/bridges/primitives/chain-millau/Cargo.toml index 0aaeb5b6bf9d..68485e646e3c 100644 --- a/bridges/primitives/chain-millau/Cargo.toml +++ b/bridges/primitives/chain-millau/Cargo.toml @@ -22,14 +22,14 @@ serde = { version = "1.0", optional = true, features = ["derive"] } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/chain-polkadot/Cargo.toml b/bridges/primitives/chain-polkadot/Cargo.toml index 738899b658cd..a02df4b1f732 100644 --- a/bridges/primitives/chain-polkadot/Cargo.toml +++ b/bridges/primitives/chain-polkadot/Cargo.toml @@ -17,11 +17,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/chain-rialto-parachain/Cargo.toml b/bridges/primitives/chain-rialto-parachain/Cargo.toml index a15c40929579..bcaa5382cc2d 100644 --- a/bridges/primitives/chain-rialto-parachain/Cargo.toml +++ b/bridges/primitives/chain-rialto-parachain/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/chain-rialto/Cargo.toml b/bridges/primitives/chain-rialto/Cargo.toml index 663f9076657d..9bc27c3a9af4 100644 --- a/bridges/primitives/chain-rialto/Cargo.toml +++ b/bridges/primitives/chain-rialto/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/chain-rococo/Cargo.toml b/bridges/primitives/chain-rococo/Cargo.toml index 814cd09bf170..5720273e59a0 100644 --- a/bridges/primitives/chain-rococo/Cargo.toml +++ b/bridges/primitives/chain-rococo/Cargo.toml @@ -16,11 +16,11 @@ bp-polkadot-core = { path = "../polkadot-core", default-features = false } bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/chain-westend/Cargo.toml b/bridges/primitives/chain-westend/Cargo.toml index ee6e2b9be99a..7060d18e3cc0 100644 --- a/bridges/primitives/chain-westend/Cargo.toml +++ b/bridges/primitives/chain-westend/Cargo.toml @@ -19,11 +19,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/chain-wococo/Cargo.toml b/bridges/primitives/chain-wococo/Cargo.toml index 633cdd15c1f5..d9502cd5deef 100644 --- a/bridges/primitives/chain-wococo/Cargo.toml +++ b/bridges/primitives/chain-wococo/Cargo.toml @@ -16,9 +16,9 @@ bp-rococo = { path = "../chain-rococo", default-features = false } bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/header-chain/Cargo.toml b/bridges/primitives/header-chain/Cargo.toml index 945d79d57cd9..80d6b91a83b9 100644 --- a/bridges/primitives/header-chain/Cargo.toml +++ b/bridges/primitives/header-chain/Cargo.toml @@ -18,11 +18,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] assert_matches = "1.5" diff --git a/bridges/primitives/message-dispatch/Cargo.toml b/bridges/primitives/message-dispatch/Cargo.toml index 39b2d00111e1..88445c218cbb 100644 --- a/bridges/primitives/message-dispatch/Cargo.toml +++ b/bridges/primitives/message-dispatch/Cargo.toml @@ -13,8 +13,8 @@ scale-info = { version = "2.0.1", default-features = false, features = ["derive" # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/messages/Cargo.toml b/bridges/primitives/messages/Cargo.toml index 2a84f74d225b..8c694e8c0238 100644 --- a/bridges/primitives/messages/Cargo.toml +++ b/bridges/primitives/messages/Cargo.toml @@ -19,10 +19,10 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] hex = "0.4" diff --git a/bridges/primitives/polkadot-core/Cargo.toml b/bridges/primitives/polkadot-core/Cargo.toml index 1542a784ef56..d35e23b28af5 100644 --- a/bridges/primitives/polkadot-core/Cargo.toml +++ b/bridges/primitives/polkadot-core/Cargo.toml @@ -17,13 +17,13 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] hex = "0.4" diff --git a/bridges/primitives/runtime/Cargo.toml b/bridges/primitives/runtime/Cargo.toml index 085cfb9dbc6d..869ddd387cd2 100644 --- a/bridges/primitives/runtime/Cargo.toml +++ b/bridges/primitives/runtime/Cargo.toml @@ -14,13 +14,13 @@ scale-info = { version = "2.0.1", default-features = false, features = ["derive" # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] hex-literal = "0.3" diff --git a/bridges/primitives/test-utils/Cargo.toml b/bridges/primitives/test-utils/Cargo.toml index 6da5c7c0f4b5..44d8e39aacae 100644 --- a/bridges/primitives/test-utils/Cargo.toml +++ b/bridges/primitives/test-utils/Cargo.toml @@ -10,10 +10,10 @@ bp-header-chain = { path = "../header-chain", default-features = false } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } ed25519-dalek = { version = "1.0", default-features = false, features = ["u64_backend"] } finality-grandpa = { version = "0.15.0", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/bridges/primitives/token-swap/Cargo.toml b/bridges/primitives/token-swap/Cargo.toml index 9097856f853a..ba47a26c89bf 100644 --- a/bridges/primitives/token-swap/Cargo.toml +++ b/bridges/primitives/token-swap/Cargo.toml @@ -16,10 +16,10 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] hex = "0.4" diff --git a/bridges/relays/bin-substrate/Cargo.toml b/bridges/relays/bin-substrate/Cargo.toml index fb8ff467d047..00c8c92d3ce6 100644 --- a/bridges/relays/bin-substrate/Cargo.toml +++ b/bridges/relays/bin-substrate/Cargo.toml @@ -59,12 +59,12 @@ substrate-relay-helper = { path = "../lib-substrate-relay" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } # Polkadot Dependencies @@ -77,6 +77,6 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", bp-test-utils = { path = "../../primitives/test-utils" } hex-literal = "0.3" pallet-bridge-grandpa = { path = "../../modules/grandpa" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } tempfile = "3.2" finality-grandpa = { version = "0.15.0" } diff --git a/bridges/relays/client-kusama/Cargo.toml b/bridges/relays/client-kusama/Cargo.toml index 35c24c1089e6..a2c39dfa4548 100644 --- a/bridges/relays/client-kusama/Cargo.toml +++ b/bridges/relays/client-kusama/Cargo.toml @@ -25,6 +25,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/bridges/relays/client-millau/Cargo.toml b/bridges/relays/client-millau/Cargo.toml index 989324334551..3a79796c479e 100644 --- a/bridges/relays/client-millau/Cargo.toml +++ b/bridges/relays/client-millau/Cargo.toml @@ -18,8 +18,8 @@ millau-runtime = { path = "../../bin/millau/runtime" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/bridges/relays/client-polkadot/Cargo.toml b/bridges/relays/client-polkadot/Cargo.toml index 96cfa2ce1bac..d79dc3f86e45 100644 --- a/bridges/relays/client-polkadot/Cargo.toml +++ b/bridges/relays/client-polkadot/Cargo.toml @@ -25,6 +25,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/bridges/relays/client-rialto-parachain/Cargo.toml b/bridges/relays/client-rialto-parachain/Cargo.toml index ebc285606431..c52c746fa16f 100644 --- a/bridges/relays/client-rialto-parachain/Cargo.toml +++ b/bridges/relays/client-rialto-parachain/Cargo.toml @@ -16,6 +16,6 @@ rialto-parachain-runtime = { path = "../../bin/rialto-parachain/runtime" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/bridges/relays/client-rialto/Cargo.toml b/bridges/relays/client-rialto/Cargo.toml index 37c55dd5f153..e463e97c368c 100644 --- a/bridges/relays/client-rialto/Cargo.toml +++ b/bridges/relays/client-rialto/Cargo.toml @@ -18,8 +18,8 @@ rialto-runtime = { path = "../../bin/rialto/runtime" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/bridges/relays/client-rococo/Cargo.toml b/bridges/relays/client-rococo/Cargo.toml index 2b78684a853c..a0349e83d774 100644 --- a/bridges/relays/client-rococo/Cargo.toml +++ b/bridges/relays/client-rococo/Cargo.toml @@ -26,6 +26,6 @@ pallet-bridge-messages = { path = "../../modules/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/bridges/relays/client-substrate/Cargo.toml b/bridges/relays/client-substrate/Cargo.toml index dad864965e29..cebaf060fd0c 100644 --- a/bridges/relays/client-substrate/Cargo.toml +++ b/bridges/relays/client-substrate/Cargo.toml @@ -28,21 +28,21 @@ relay-utils = { path = "../utils" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } #[dev-dependencies] futures = "0.3.7" diff --git a/bridges/relays/client-westend/Cargo.toml b/bridges/relays/client-westend/Cargo.toml index d38aa1629945..f334042b6589 100644 --- a/bridges/relays/client-westend/Cargo.toml +++ b/bridges/relays/client-westend/Cargo.toml @@ -16,6 +16,6 @@ bp-westend = { path = "../../primitives/chain-westend" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/bridges/relays/client-wococo/Cargo.toml b/bridges/relays/client-wococo/Cargo.toml index 6845ac34c84a..38ab5f495037 100644 --- a/bridges/relays/client-wococo/Cargo.toml +++ b/bridges/relays/client-wococo/Cargo.toml @@ -24,6 +24,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } pallet-bridge-messages = { path = "../../modules/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/bridges/relays/lib-substrate-relay/Cargo.toml b/bridges/relays/lib-substrate-relay/Cargo.toml index e2cabf52f449..2febfc48875f 100644 --- a/bridges/relays/lib-substrate-relay/Cargo.toml +++ b/bridges/relays/lib-substrate-relay/Cargo.toml @@ -34,19 +34,19 @@ bp-messages = { path = "../../primitives/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] bp-millau = { path = "../../primitives/chain-millau" } bp-rialto = { path = "../../primitives/chain-rialto" } bp-rococo = { path = "../../primitives/chain-rococo" } bp-wococo = { path = "../../primitives/chain-wococo" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } relay-rococo-client = { path = "../client-rococo" } relay-wococo-client = { path = "../client-wococo" } rialto-runtime = { path = "../../bin/rialto/runtime" } diff --git a/bridges/relays/messages/Cargo.toml b/bridges/relays/messages/Cargo.toml index b3357994b125..1dea4aec61cb 100644 --- a/bridges/relays/messages/Cargo.toml +++ b/bridges/relays/messages/Cargo.toml @@ -21,4 +21,4 @@ bp-runtime = { path = "../../primitives/runtime" } finality-relay = { path = "../finality" } relay-utils = { path = "../utils" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/bridges/relays/utils/Cargo.toml b/bridges/relays/utils/Cargo.toml index bb69849da26b..2e899ec9551c 100644 --- a/bridges/relays/utils/Cargo.toml +++ b/bridges/relays/utils/Cargo.toml @@ -29,4 +29,4 @@ bp-runtime = { path = "../../primitives/runtime" } # Substrate dependencies -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9bf56b8a507d..07023b12680e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -25,20 +25,20 @@ polkadot-client = { path = "../node/client", optional = true } polkadot-node-core-pvf = { path = "../node/core/pvf", optional = true } polkadot-performance-test = { path = "../node/test/performance-test", optional = true } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } +sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } polkadot-node-metrics = { path = "../node/metrics" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } # this crate is used only to enable `trie-memory-tracker` feature # see https://github.com/paritytech/substrate/pull/6745 -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["wasmtime", "db", "cli", "full-node", "trie-memory-tracker", "polkadot-native"] diff --git a/core-primitives/Cargo.toml b/core-primitives/Cargo.toml index 2249b4c2daaf..cd8f820ee50d 100644 --- a/core-primitives/Cargo.toml +++ b/core-primitives/Cargo.toml @@ -5,9 +5,9 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } scale-info = { version = "2.0.0", default-features = false, features = ["derive"] } parity-scale-codec = { version = "3.1.2", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 12a72d1ac770..ae6072e214e6 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -9,6 +9,6 @@ polkadot-primitives = { path = "../primitives" } polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../node/primitives" } novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["std", "derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } thiserror = "1.0.30" diff --git a/node/client/Cargo.toml b/node/client/Cargo.toml index 869612c64f6d..9c17837a84bc 100644 --- a/node/client/Cargo.toml +++ b/node/client/Cargo.toml @@ -5,38 +5,38 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } - -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } - -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } - -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } - -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } + +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } + +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } + +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } + +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } # Polkadot Runtimes polkadot-runtime = { path = "../../runtime/polkadot", optional = true } diff --git a/node/collation-generation/Cargo.toml b/node/collation-generation/Cargo.toml index bf43fad903e9..ee3a6bf1a01d 100644 --- a/node/collation-generation/Cargo.toml +++ b/node/collation-generation/Cargo.toml @@ -12,8 +12,8 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } thiserror = "1.0.30" parity-scale-codec = { version = "3.1.2", default-features = false, features = ["bit-vec", "derive"] } diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index d4d8b46a272d..909f8aa4354f 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -23,19 +23,19 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] parking_lot = "0.12.0" rand_core = "0.5.1" # should match schnorrkel -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" kvdb-memorydb = "0.11.0" diff --git a/node/core/av-store/Cargo.toml b/node/core/av-store/Cargo.toml index 0e216671f81b..5b91ad4ebb0e 100644 --- a/node/core/av-store/Cargo.toml +++ b/node/core/av-store/Cargo.toml @@ -26,9 +26,9 @@ env_logger = "0.9.0" assert_matches = "1.4.0" kvdb-memorydb = "0.11.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } parking_lot = "0.12.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/backing/Cargo.toml b/node/core/backing/Cargo.toml index df6b684069f1..a23df18b73f2 100644 --- a/node/core/backing/Cargo.toml +++ b/node/core/backing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] futures = "0.3.21" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } @@ -18,11 +18,11 @@ gum = { package = "tracing-gum", path = "../../gum" } thiserror = "1.0.30" [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/core/bitfield-signing/Cargo.toml b/node/core/bitfield-signing/Cargo.toml index 423ed649bd27..eac558ce15ae 100644 --- a/node/core/bitfield-signing/Cargo.toml +++ b/node/core/bitfield-signing/Cargo.toml @@ -10,7 +10,7 @@ gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } wasm-timer = "0.2.5" thiserror = "1.0.30" diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index f5c0b8f81b07..10f17463e603 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -9,7 +9,7 @@ async-trait = "0.1.53" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } -sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["bit-vec", "derive"] } polkadot-primitives = { path = "../../../primitives" } @@ -22,9 +22,9 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-core-pvf = { path = "../pvf" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/chain-api/Cargo.toml b/node/core/chain-api/Cargo.toml index 1a7f854a3194..6e52295e2878 100644 --- a/node/core/chain-api/Cargo.toml +++ b/node/core/chain-api/Cargo.toml @@ -7,12 +7,12 @@ edition = "2021" [dependencies] futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] futures = { version = "0.3.21", features = ["thread-pool"] } @@ -20,4 +20,4 @@ maplit = "1.0.2" parity-scale-codec = "3.1.2" polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/node/core/chain-selection/Cargo.toml b/node/core/chain-selection/Cargo.toml index 9ac9f362222e..86fec0eac160 100644 --- a/node/core/chain-selection/Cargo.toml +++ b/node/core/chain-selection/Cargo.toml @@ -19,7 +19,7 @@ parity-scale-codec = "3.1.2" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } parking_lot = "0.12.0" assert_matches = "1" kvdb-memorydb = "0.11.0" diff --git a/node/core/dispute-coordinator/Cargo.toml b/node/core/dispute-coordinator/Cargo.toml index 34ea0e42b0fb..a047c7ac6655 100644 --- a/node/core/dispute-coordinator/Cargo.toml +++ b/node/core/dispute-coordinator/Cargo.toml @@ -18,15 +18,15 @@ polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] kvdb-memorydb = "0.11.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } assert_matches = "1.4.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index b6389f709614..0197fffdef29 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -12,6 +12,6 @@ thiserror = "1.0.30" async-trait = "0.1.53" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-primitives = { path = "../../../primitives" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/node/core/provisioner/Cargo.toml b/node/core/provisioner/Cargo.toml index c56431d3fcf2..ffd35671408a 100644 --- a/node/core/provisioner/Cargo.toml +++ b/node/core/provisioner/Cargo.toml @@ -17,7 +17,7 @@ futures-timer = "3.0.2" rand = "0.8.5" [dev-dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/pvf-checker/Cargo.toml b/node/core/pvf-checker/Cargo.toml index c892462aec7e..4ecdeb21665c 100644 --- a/node/core/pvf-checker/Cargo.toml +++ b/node/core/pvf-checker/Cargo.toml @@ -15,14 +15,14 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-overseer = { path = "../../overseer" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers"} test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures-timer = "3.0.2" diff --git a/node/core/pvf/Cargo.toml b/node/core/pvf/Cargo.toml index f6b0e1f738bd..6a2d4945e31d 100644 --- a/node/core/pvf/Cargo.toml +++ b/node/core/pvf/Cargo.toml @@ -23,15 +23,15 @@ parity-scale-codec = { version = "3.1.2", default-features = false, features = [ polkadot-parachain = { path = "../../../parachain" } polkadot-core-primitives = { path = "../../../core-primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util"} -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] adder = { package = "test-parachain-adder", path = "../../../parachain/test-parachains/adder" } diff --git a/node/core/runtime-api/Cargo.toml b/node/core/runtime-api/Cargo.toml index 4e31ad0daabe..9b0801530389 100644 --- a/node/core/runtime-api/Cargo.toml +++ b/node/core/runtime-api/Cargo.toml @@ -10,18 +10,18 @@ gum = { package = "tracing-gum", path = "../../gum" } memory-lru = "0.1.0" parity-util-mem = { version = "0.11.0", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures = { version = "0.3.21", features = ["thread-pool"] } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } polkadot-node-primitives = { path = "../../primitives" } diff --git a/node/jaeger/Cargo.toml b/node/jaeger/Cargo.toml index 8cb6c6ae3f2c..5cb4262c458a 100644 --- a/node/jaeger/Cargo.toml +++ b/node/jaeger/Cargo.toml @@ -12,8 +12,8 @@ lazy_static = "1.4" parking_lot = "0.12.0" polkadot-primitives = { path = "../../primitives" } polkadot-node-primitives = { path = "../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } thiserror = "1.0.30" log = "0.4.16" parity-scale-codec = { version = "3.1.2", default-features = false } diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index f5016989412a..80e771b9c3f7 100644 --- a/node/malus/Cargo.toml +++ b/node/malus/Cargo.toml @@ -27,7 +27,7 @@ parity-util-mem = { version = "0.11.0", default-features = false, features = ["j color-eyre = { version = "0.6.1", default-features = false } assert_matches = "1.5" async-trait = "0.1.53" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } clap = { version = "3.1", features = ["derive"] } futures = "0.3.21" futures-timer = "3.0.2" @@ -38,5 +38,5 @@ default = [] [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures = { version = "0.3.21", features = ["thread-pool"] } diff --git a/node/metrics/Cargo.toml b/node/metrics/Cargo.toml index e99dea18f8c2..609a75677c62 100644 --- a/node/metrics/Cargo.toml +++ b/node/metrics/Cargo.toml @@ -13,11 +13,11 @@ gum = { package = "tracing-gum", path = "../gum" } metered-channel = { path = "../metered-channel" } # Both `sc-service` and `sc-cli` are required by runtime metrics `logger_hook()`. -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } codec = { package = "parity-scale-codec", version = "3.0.0" } primitives = { package = "polkadot-primitives", path = "../../primitives/" } bs58 = { version = "0.4.0", features = ["alloc"] } @@ -30,10 +30,10 @@ tempfile = "3.2.0" hyper = { version = "0.14.18", default-features = false, features = ["http1", "tcp"] } tokio = "1.17.0" polkadot-test-service = { path = "../test/service", features=["runtime-metrics"]} -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } prometheus-parse = {version = "0.2.2"} [features] diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index cd6406c1a516..91e1e865eaa0 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -15,7 +15,7 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "dp-jsonrpsee-integration-2" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index cfdc4a718dc6..e81266de81b6 100644 --- a/node/network/availability-distribution/Cargo.toml +++ b/node/network/availability-distribution/Cargo.toml @@ -14,8 +14,8 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } thiserror = "1.0.30" rand = "0.8.5" derive_more = "0.99.17" @@ -24,10 +24,10 @@ fatality = "0.0.6" [dev-dependencies] polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures-timer = "3.0.2" assert_matches = "1.4.0" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/availability-recovery/Cargo.toml b/node/network/availability-recovery/Cargo.toml index 365906edfbe7..04fef8d5d277 100644 --- a/node/network/availability-recovery/Cargo.toml +++ b/node/network/availability-recovery/Cargo.toml @@ -19,7 +19,7 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-network-protocol = { path = "../../network/protocol" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] assert_matches = "1.4.0" @@ -27,10 +27,10 @@ env_logger = "0.9.0" futures-timer = "3.0.2" log = "0.4.16" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-subsystem-test-helpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/bitfield-distribution/Cargo.toml b/node/network/bitfield-distribution/Cargo.toml index baafa85a4131..31c642f19e0a 100644 --- a/node/network/bitfield-distribution/Cargo.toml +++ b/node/network/bitfield-distribution/Cargo.toml @@ -15,10 +15,10 @@ polkadot-node-network-protocol = { path = "../../network/protocol" } [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } maplit = "1.0.2" log = "0.4.16" env_logger = "0.9.0" diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index c1d45cbad0e1..5ca556f9ba3a 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -10,8 +10,8 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-overseer = { path = "../../overseer" } polkadot-node-network-protocol = { path = "../protocol" } @@ -21,7 +21,7 @@ parking_lot = "0.12.0" [dev-dependencies] assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures-timer = "3" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index da341f0fc960..b1f7eba0f62e 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -10,9 +10,9 @@ futures = "0.3.21" futures-timer = "3" gum = { package = "tracing-gum", path = "../../gum" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-network-protocol = { path = "../../network/protocol" } @@ -27,9 +27,9 @@ log = "0.4.16" env_logger = "0.9.0" assert_matches = "1.4.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } parity-scale-codec = { version = "3.1.2", features = ["std"] } polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index 76bba7b4a5dc..ed6da53f6b78 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -15,9 +15,9 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } thiserror = "1.0.30" fatality = "0.0.6" lru = "0.7.4" @@ -25,9 +25,9 @@ lru = "0.7.4" [dev-dependencies] async-trait = "0.1.53" polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures-timer = "3.0.2" assert_matches = "1.4.0" lazy_static = "1.4.0" diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index b649205737e1..bb2c8d253146 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -5,10 +5,10 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-node-network-protocol = { path = "../protocol" } polkadot-node-subsystem = { path = "../../subsystem" } @@ -22,9 +22,9 @@ rand_chacha = { version = "0.3.1", default-features = false } gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index c0e10367a83c..133cbf783a8b 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -11,8 +11,8 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } strum = { version = "0.24", features = ["derive"] } futures = "0.3.21" thiserror = "1.0.30" diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index 88fa14bc0804..1f2b1177263d 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -9,8 +9,8 @@ edition = "2021" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } @@ -24,12 +24,12 @@ fatality = "0.0.6" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures-timer = "3.0.2" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index beb850e7aeec..daadcb0bcd2f 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures = "0.3.21" futures-timer = "3.0.2" parking_lot = "0.12.0" @@ -22,7 +22,7 @@ parity-util-mem = { version = "0.11.0", default-features = false } [dev-dependencies] metered-channel = { path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures = { version = "0.3.21", features = ["thread-pool"] } femme = "2.2.0" assert_matches = "1.4.0" diff --git a/node/primitives/Cargo.toml b/node/primitives/Cargo.toml index 789bc8522bd0..5f83a6a1cd40 100644 --- a/node/primitives/Cargo.toml +++ b/node/primitives/Cargo.toml @@ -10,12 +10,12 @@ bounded-vec = "0.5" futures = "0.3.21" polkadot-primitives = { path = "../../primitives" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-parachain = { path = "../../parachain", default-features = false } schnorrkel = "0.9.1" thiserror = "1.0.30" diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 2fb1439c1e7a..7f1268080bc9 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -6,59 +6,59 @@ edition = "2021" [dependencies] # Substrate Client -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +service = { package = "sc-service", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } # Substrate Primitives -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } # Substrate Pallets -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } # Substrate Other -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } # External Crates futures = "0.3.21" diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index 6ad75b9d5089..7b16da372046 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -12,11 +12,11 @@ parking_lot = "0.12.0" polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] polkadot-overseer = { path = "../overseer" } diff --git a/node/subsystem-types/Cargo.toml b/node/subsystem-types/Cargo.toml index 5db47d209347..2db66d35c962 100644 --- a/node/subsystem-types/Cargo.toml +++ b/node/subsystem-types/Cargo.toml @@ -14,7 +14,7 @@ polkadot-node-network-protocol = { path = "../network/protocol" } polkadot-statement-table = { path = "../../statement-table" } polkadot-node-jaeger = { path = "../jaeger" } polkadot-overseer-gen = { path = "../overseer/overseer-gen" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } smallvec = "1.8.0" -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } thiserror = "1.0.30" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index 52d318d62a7a..bfc26572ddcb 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -28,9 +28,9 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-overseer = { path = "../overseer" } metered-channel = { path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } kvdb = "0.11.0" parity-util-mem = { version = "0.11", default-features = false } diff --git a/node/test/client/Cargo.toml b/node/test/client/Cargo.toml index a194b60c5375..533475a70788 100644 --- a/node/test/client/Cargo.toml +++ b/node/test/client/Cargo.toml @@ -14,20 +14,20 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } # Substrate dependencies -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures = "0.3.21" diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index 524fb69dca06..1b388abe74a7 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -27,40 +27,40 @@ test-runtime-constants = { path = "../../../runtime/test-runtime/constants" } polkadot-runtime-parachains = { path = "../../../runtime/parachains" } # Substrate dependencies -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "wasmtime" ] } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "wasmtime" ] , branch = "dp-jsonrpsee-integration-2" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } serde_json = "1.0.79" -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } tokio = { version = "1.17.0", features = ["macros"] } [features] diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 4e17a2e0d131..1e6d2b3917a8 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -12,10 +12,10 @@ edition = "2021" parity-scale-codec = { version = "3.1.2", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } scale-info = { version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } polkadot-core-primitives = { path = "../core-primitives", default-features = false } derive_more = "0.99.11" diff --git a/parachain/test-parachains/Cargo.toml b/parachain/test-parachains/Cargo.toml index b69624b5fea6..07be891dfb5c 100644 --- a/parachain/test-parachains/Cargo.toml +++ b/parachain/test-parachains/Cargo.toml @@ -13,7 +13,7 @@ adder = { package = "test-parachain-adder", path = "adder" } halt = { package = "test-parachain-halt", path = "halt" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/parachain/test-parachains/adder/Cargo.toml b/parachain/test-parachains/adder/Cargo.toml index 6b523d3e5fd0..57307db88084 100644 --- a/parachain/test-parachains/adder/Cargo.toml +++ b/parachain/test-parachains/adder/Cargo.toml @@ -9,15 +9,15 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "dp-jsonrpsee-integration-2" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/adder/collator/Cargo.toml b/parachain/test-parachains/adder/collator/Cargo.toml index cf8ceccaded1..9c9a15b0476c 100644 --- a/parachain/test-parachains/adder/collator/Cargo.toml +++ b/parachain/test-parachains/adder/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } tokio = { version = "1.17.0", features = ["macros"] } diff --git a/parachain/test-parachains/halt/Cargo.toml b/parachain/test-parachains/halt/Cargo.toml index 765558221546..a8894e4c64f1 100644 --- a/parachain/test-parachains/halt/Cargo.toml +++ b/parachain/test-parachains/halt/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" [dependencies] [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/undying/Cargo.toml b/parachain/test-parachains/undying/Cargo.toml index 2baf3104060b..f6183f6c7099 100644 --- a/parachain/test-parachains/undying/Cargo.toml +++ b/parachain/test-parachains/undying/Cargo.toml @@ -9,16 +9,16 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } log = { version = "0.4.16", default-features = false } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "dp-jsonrpsee-integration-2" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/undying/collator/Cargo.toml b/parachain/test-parachains/undying/collator/Cargo.toml index da6f097f6ca5..d798373298cd 100644 --- a/parachain/test-parachains/undying/collator/Cargo.toml +++ b/parachain/test-parachains/undying/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } tokio = { version = "1.15", features = ["macros"] } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 05093b8fcfb5..1750e3caa592 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -8,24 +8,24 @@ edition = "2021" serde = { version = "1.0.136", optional = true, features = ["derive"] } scale-info = { version = "2.0.0", default-features = false, features = ["bit-vec", "derive"] } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } polkadot-parachain = { path = "../parachain", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } hex-literal = "0.3.4" parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/primitives/test-helpers/Cargo.toml b/primitives/test-helpers/Cargo.toml index 59fdf4e1a706..b4ecc251a13d 100644 --- a/primitives/test-helpers/Cargo.toml +++ b/primitives/test-helpers/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-primitives = { path = "../" } rand = "0.8.5" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 1f951f9e63e2..2c3aa3689145 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -7,26 +7,26 @@ edition = "2021" [dependencies] jsonrpsee = { version = "0.9", features = ["server"] } polkadot-primitives = { path = "../primitives" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 37b7fabab312..db168043a7c9 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -15,34 +15,34 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } libsecp256k1 = { version = "0.7.0", default-features = false } @@ -53,10 +53,10 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } trie-db = "0.23.1" serde_json = "1.0.79" libsecp256k1 = "0.7.0" diff --git a/runtime/common/slot_range_helper/Cargo.toml b/runtime/common/slot_range_helper/Cargo.toml index 450620cd31c0..5b17bf2f3d38 100644 --- a/runtime/common/slot_range_helper/Cargo.toml +++ b/runtime/common/slot_range_helper/Cargo.toml @@ -8,8 +8,8 @@ edition = "2021" paste = "1.0" enumn = "0.1.3" parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 917a8c1601b2..73673ee6dddb 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -16,73 +16,73 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } kusama-runtime-constants = { package = "kusama-runtime-constants", path = "./constants", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-gilt = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-gilt = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -96,13 +96,13 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } separator = "0.4.1" serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/runtime/kusama/constants/Cargo.toml b/runtime/kusama/constants/Cargo.toml index 1239b9d05070..c3b14a67df32 100644 --- a/runtime/kusama/constants/Cargo.toml +++ b/runtime/kusama/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/runtime/metrics/Cargo.toml b/runtime/metrics/Cargo.toml index 75815a5b100d..c2cfdb84f98d 100644 --- a/runtime/metrics/Cargo.toml +++ b/runtime/metrics/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } parity-scale-codec = { version = "3.1.2", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index 0b8b359ea241..d60741142b3d 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -14,29 +14,29 @@ serde = { version = "1.0.136", features = [ "derive" ], optional = true } derive_more = "0.99.17" bitflags = "1.3.2" -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } xcm = { package = "xcm", path = "../../xcm", default-features = false } xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false } @@ -50,11 +50,11 @@ polkadot-runtime-metrics = { path = "../metrics", default-features = false} [dev-dependencies] futures = "0.3.21" hex-literal = "0.3.4" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers"} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } thousands = "0.2.0" assert_matches = "1" diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index 4ee87435fab3..9c23119f207d 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -16,69 +16,69 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } polkadot-runtime-constants = { package = "polkadot-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -92,14 +92,14 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } trie-db = "0.23.1" serde_json = "1.0.79" separator = "0.4.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/runtime/polkadot/constants/Cargo.toml b/runtime/polkadot/constants/Cargo.toml index 85d37004ecff..393e63f0e719 100644 --- a/runtime/polkadot/constants/Cargo.toml +++ b/runtime/polkadot/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index aaab3aacc659..78c127bba37a 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -13,52 +13,52 @@ serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" log = { version = "0.4.16", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } rococo-runtime-constants = { package = "rococo-runtime-constants", path = "./constants", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -82,12 +82,12 @@ pallet-bridge-grandpa = { path = "../../bridges/modules/grandpa", default-featur pallet-bridge-messages = { path = "../../bridges/modules/messages", default-features = false } # Benchmarking Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } hex-literal = { version = "0.3.4", optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/runtime/rococo/constants/Cargo.toml b/runtime/rococo/constants/Cargo.toml index 7f1c1f6fb0dd..cf3f13774bb7 100644 --- a/runtime/rococo/constants/Cargo.toml +++ b/runtime/rococo/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index f914cae89c3e..c46dc78f618b 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -15,45 +15,45 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } test-runtime-constants = { package = "test-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } @@ -67,12 +67,12 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/runtime/test-runtime/constants/Cargo.toml b/runtime/test-runtime/constants/Cargo.toml index 32d6e6ea6a64..b3ea26db2a24 100644 --- a/runtime/test-runtime/constants/Cargo.toml +++ b/runtime/test-runtime/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index 58e81e330271..27f0bb61b965 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -15,70 +15,70 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } westend-runtime-constants = { package = "westend-runtime-constants", path = "./constants", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -93,12 +93,12 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/runtime/westend/constants/Cargo.toml b/runtime/westend/constants/Cargo.toml index d43bddcc73c4..a5623d837d5a 100644 --- a/runtime/westend/constants/Cargo.toml +++ b/runtime/westend/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index 8bdbfab90f14..898b0a099ee2 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/utils/generate-bags/Cargo.toml b/utils/generate-bags/Cargo.toml index 5492e6e843e1..f27d5c1bfb3c 100644 --- a/utils/generate-bags/Cargo.toml +++ b/utils/generate-bags/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" [dependencies] clap = { version = "3.1", features = ["derive"] } -generate-bags = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +generate-bags = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } westend-runtime = { path = "../../runtime/westend" } kusama-runtime = { path = "../../runtime/kusama" } diff --git a/utils/remote-ext-tests/bags-list/Cargo.toml b/utils/remote-ext-tests/bags-list/Cargo.toml index ca5f00224509..4ed9f4b0d274 100644 --- a/utils/remote-ext-tests/bags-list/Cargo.toml +++ b/utils/remote-ext-tests/bags-list/Cargo.toml @@ -12,10 +12,10 @@ polkadot-runtime-constants = { path = "../../../runtime/polkadot/constants" } kusama-runtime-constants = { path = "../../../runtime/kusama/constants" } westend-runtime-constants = { path = "../../../runtime/westend/constants" } -pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } clap = { version = "3.1", features = ["derive"] } log = "0.4.16" diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index 645a018b9ffb..a6b97d61a5eb 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } clap = { version = "3.1", features = ["derive", "env"] } tracing-subscriber = { version = "0.3.10", features = ["env-filter"] } -jsonrpsee = { version = "0.8", features = ["ws-client", "macros"] } +jsonrpsee = { version = "0.9", features = ["ws-client", "macros"] } log = "0.4.16" paste = "1.0.7" serde = "1.0.136" @@ -16,22 +16,22 @@ serde_json = "1.0" thiserror = "1.0.30" tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread", "sync"] } -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } - -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } - -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } + +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } + +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } core-primitives = { package = "polkadot-core-primitives", path = "../../core-primitives" } diff --git a/xcm/pallet-xcm-benchmarks/Cargo.toml b/xcm/pallet-xcm-benchmarks/Cargo.toml index 1a58447fda9b..0677624b4e6a 100644 --- a/xcm/pallet-xcm-benchmarks/Cargo.toml +++ b/xcm/pallet-xcm-benchmarks/Cargo.toml @@ -10,21 +10,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } scale-info = { version = "2.0.0", default-features = false, features = ["derive"] } -frame-support = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -frame-system = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -sp-runtime = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -sp-std = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-support = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } +frame-system = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } +sp-std = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } xcm-executor = { path = "../xcm-executor", default-features = false, features = ["runtime-benchmarks"] } -frame-benchmarking = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } xcm = { path = "..", default-features = false, features = ["runtime-benchmarks"] } log = "0.4.16" [dev-dependencies] -pallet-balances = { branch = "master", git = "https://github.com/paritytech/substrate" } -pallet-assets = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-core = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-io = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-tracing = { branch = "master", git = "https://github.com/paritytech/substrate" } +pallet-balances = { git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } +pallet-assets = { git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } xcm-builder = { path = "../xcm-builder" } xcm = { path = ".." } # temp diff --git a/xcm/pallet-xcm/Cargo.toml b/xcm/pallet-xcm/Cargo.toml index 585547a576b3..06e2f0cdaa14 100644 --- a/xcm/pallet-xcm/Cargo.toml +++ b/xcm/pallet-xcm/Cargo.toml @@ -10,19 +10,19 @@ scale-info = { version = "2.0.0", default-features = false, features = ["derive" serde = { version = "1.0.136", optional = true, features = ["derive"] } log = { version = "0.4.16", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } xcm-builder = { path = "../xcm-builder" } polkadot-parachain = { path = "../../parachain" } diff --git a/xcm/xcm-builder/Cargo.toml b/xcm/xcm-builder/Cargo.toml index 2b6f79dcbf5d..5e7221837b77 100644 --- a/xcm/xcm-builder/Cargo.toml +++ b/xcm/xcm-builder/Cargo.toml @@ -10,21 +10,21 @@ parity-scale-codec = { version = "3.1.2", default-features = false, features = [ scale-info = { version = "2.0.0", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } log = { version = "0.4.16", default-features = false } # Polkadot dependencies polkadot-parachain = { path = "../../parachain", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } pallet-xcm = { path = "../pallet-xcm" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } [features] diff --git a/xcm/xcm-executor/Cargo.toml b/xcm/xcm-executor/Cargo.toml index eb131d7b726b..72d12181d235 100644 --- a/xcm/xcm-executor/Cargo.toml +++ b/xcm/xcm-executor/Cargo.toml @@ -9,14 +9,14 @@ version = "0.9.18" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } log = { version = "0.4.16", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/xcm/xcm-executor/integration-tests/Cargo.toml b/xcm/xcm-executor/integration-tests/Cargo.toml index c435f01aa19a..5d8fd32e3e5d 100644 --- a/xcm/xcm-executor/integration-tests/Cargo.toml +++ b/xcm/xcm-executor/integration-tests/Cargo.toml @@ -6,20 +6,20 @@ description = "Integration tests for the XCM Executor" version = "0.9.18" [dependencies] -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures = "0.3.21" pallet-xcm = { path = "../../pallet-xcm" } polkadot-test-client = { path = "../../../node/test/client" } polkadot-test-runtime = { path = "../../../runtime/test-runtime" } polkadot-test-service = { path = "../../../node/test/service" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } xcm = { path = "../..", default-features = false } xcm-executor = { path = ".." } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } [features] default = ["std"] diff --git a/xcm/xcm-simulator/Cargo.toml b/xcm/xcm-simulator/Cargo.toml index aecfc878f395..8e99c0f15e8a 100644 --- a/xcm/xcm-simulator/Cargo.toml +++ b/xcm/xcm-simulator/Cargo.toml @@ -9,9 +9,9 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } paste = "1.0.7" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } xcm = { path = "../" } xcm-executor = { path = "../xcm-executor" } diff --git a/xcm/xcm-simulator/example/Cargo.toml b/xcm/xcm-simulator/example/Cargo.toml index 5193aedf8c1b..66fd33274da8 100644 --- a/xcm/xcm-simulator/example/Cargo.toml +++ b/xcm/xcm-simulator/example/Cargo.toml @@ -9,13 +9,13 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } scale-info = { version = "2.0.0", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } xcm = { path = "../../" } xcm-simulator = { path = "../" } diff --git a/xcm/xcm-simulator/fuzzer/Cargo.toml b/xcm/xcm-simulator/fuzzer/Cargo.toml index f49dbae84fdd..b4fced40992c 100644 --- a/xcm/xcm-simulator/fuzzer/Cargo.toml +++ b/xcm/xcm-simulator/fuzzer/Cargo.toml @@ -10,13 +10,13 @@ codec = { package = "parity-scale-codec", version = "3.0.0" } honggfuzz = "0.5.54" scale-info = { version = "2.0.0", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } xcm = { path = "../../" } xcm-simulator = { path = "../" } From 95e8078b09a10ee6e73dcc763b9eb68869dd994a Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Wed, 6 Apr 2022 18:24:25 +0200 Subject: [PATCH 03/23] cargo fmt --- rpc/src/lib.rs | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/rpc/src/lib.rs b/rpc/src/lib.rs index ba1898ccadcc..3082b0f97fd3 100644 --- a/rpc/src/lib.rs +++ b/rpc/src/lib.rs @@ -136,7 +136,10 @@ where finality_provider, } = grandpa; - io.merge(substrate_state_trie_migration_rpc::MigrationRpc::new(client.clone(), backend, deny_unsafe).into_rpc())?; + io.merge( + substrate_state_trie_migration_rpc::MigrationRpc::new(client.clone(), backend, deny_unsafe) + .into_rpc(), + )?; io.merge(SystemRpc::new(client.clone(), pool.clone(), deny_unsafe).into_rpc())?; io.merge(TransactionPaymentRpc::new(client.clone()).into_rpc())?; io.merge(MmrRpc::new(client.clone()).into_rpc())?; @@ -162,13 +165,8 @@ where .into_rpc(), )?; io.merge( - SyncStateRpc::new( - chain_spec, - client, - shared_authority_set, - shared_epoch_changes, - )? - .into_rpc(), + SyncStateRpc::new(chain_spec, client, shared_authority_set, shared_epoch_changes)? + .into_rpc(), )?; io.merge( From d683d98634814c3354ed5e085785176e6562bc65 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 7 Apr 2022 09:53:17 +0200 Subject: [PATCH 04/23] update substrate --- Cargo.lock | 486 ++++++++++++++++++--------------- utils/staking-miner/Cargo.toml | 2 +- utils/staking-miner/src/rpc.rs | 7 +- 3 files changed, 277 insertions(+), 218 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6f104702060d..3d0894056322 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -450,7 +450,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "beefy-primitives", "fnv", @@ -483,12 +483,12 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "beefy-gadget", "beefy-primitives", "futures 0.3.21", - "jsonrpsee", + "jsonrpsee 0.9.0", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -503,12 +503,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "scale-info", @@ -2102,7 +2102,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", ] @@ -2120,7 +2120,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -2142,7 +2142,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "Inflector", "chrono", @@ -2187,7 +2187,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2198,7 +2198,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2214,7 +2214,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -2242,7 +2242,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "bitflags", "frame-metadata", @@ -2271,7 +2271,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2283,7 +2283,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2295,7 +2295,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "proc-macro2", "quote", @@ -2305,7 +2305,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2328,7 +2328,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -2339,7 +2339,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "log", @@ -2356,7 +2356,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -2371,7 +2371,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "sp-api", @@ -2380,7 +2380,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "sp-api", @@ -2559,7 +2559,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "chrono", "frame-election-provider-support", @@ -2706,7 +2706,7 @@ dependencies = [ "indexmap", "slab", "tokio", - "tokio-util", + "tokio-util 0.6.9", "tracing", ] @@ -3146,51 +3146,47 @@ dependencies = [ ] [[package]] -name = "jsonrpc-core" -version = "18.0.0" +name = "jsonrpsee" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb" +checksum = "f0d0b8cc1959f8c05256ace093b2317482da9127f1d9227564f47e7e6bf9bda8" dependencies = [ - "futures 0.3.21", - "futures-executor", - "futures-util", - "log", - "serde", - "serde_derive", - "serde_json", + "jsonrpsee-core 0.9.0", + "jsonrpsee-http-server", + "jsonrpsee-proc-macros 0.9.0", + "jsonrpsee-types 0.9.0", + "jsonrpsee-ws-server", ] [[package]] name = "jsonrpsee" -version = "0.9.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0d0b8cc1959f8c05256ace093b2317482da9127f1d9227564f47e7e6bf9bda8" +checksum = "91dc760c341fa81173f9a434931aaf32baad5552b0230cc6c93e8fb7eaad4c19" dependencies = [ - "jsonrpsee-core", - "jsonrpsee-http-server", - "jsonrpsee-proc-macros", - "jsonrpsee-types", + "jsonrpsee-core 0.10.1", + "jsonrpsee-proc-macros 0.10.1", + "jsonrpsee-types 0.10.1", "jsonrpsee-ws-client", - "jsonrpsee-ws-server", ] [[package]] name = "jsonrpsee-client-transport" -version = "0.9.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa370c2c717d798c3c0a315ae3f0a707a388c6963c11f9da7dbbe1d3f7392f5f" +checksum = "765f7a36d5087f74e3b3b47805c2188fef8eb54afcb587b078d9f8ebfe9c7220" dependencies = [ "futures 0.3.21", "http", - "jsonrpsee-core", - "jsonrpsee-types", + "jsonrpsee-core 0.10.1", + "jsonrpsee-types 0.10.1", "pin-project 1.0.10", "rustls-native-certs 0.6.1", "soketto", "thiserror", "tokio", "tokio-rustls 0.23.2", - "tokio-util", + "tokio-util 0.7.1", "tracing", "webpki-roots 0.22.2", ] @@ -3209,7 +3205,7 @@ dependencies = [ "futures-channel", "futures-util", "hyper", - "jsonrpsee-types", + "jsonrpsee-types 0.9.0", "parking_lot 0.12.0", "rand 0.8.5", "rustc-hash", @@ -3221,6 +3217,29 @@ dependencies = [ "tracing", ] +[[package]] +name = "jsonrpsee-core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82ef77ecd20c2254d54f5da8c0738eacca61e6b6511268a8f2753e3148c6c706" +dependencies = [ + "anyhow", + "arrayvec 0.7.2", + "async-trait", + "beef", + "futures-channel", + "futures-util", + "hyper", + "jsonrpsee-types 0.10.1", + "rustc-hash", + "serde", + "serde_json", + "soketto", + "thiserror", + "tokio", + "tracing", +] + [[package]] name = "jsonrpsee-http-server" version = "0.9.0" @@ -3231,8 +3250,8 @@ dependencies = [ "futures-util", "globset", "hyper", - "jsonrpsee-core", - "jsonrpsee-types", + "jsonrpsee-core 0.9.0", + "jsonrpsee-types 0.9.0", "lazy_static", "serde_json", "socket2 0.4.4", @@ -3253,6 +3272,18 @@ dependencies = [ "syn", ] +[[package]] +name = "jsonrpsee-proc-macros" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7291c72805bc7d413b457e50d8ef3e87aa554da65ecbbc278abb7dfc283e7f0" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "jsonrpsee-types" version = "0.9.0" @@ -3267,15 +3298,29 @@ dependencies = [ "tracing", ] +[[package]] +name = "jsonrpsee-types" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b6aa52f322cbf20c762407629b8300f39bcc0cf0619840d9252a2f65fd2dd9" +dependencies = [ + "anyhow", + "beef", + "serde", + "serde_json", + "thiserror", + "tracing", +] + [[package]] name = "jsonrpsee-ws-client" -version = "0.9.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31b58983485b2b626c276f1eb367d62dae82132451b281072a7bfa536a33ddf3" +checksum = "dd66d18bab78d956df24dd0d2e41e4c00afbb818fda94a98264bdd12ce8506ac" dependencies = [ "jsonrpsee-client-transport", - "jsonrpsee-core", - "jsonrpsee-types", + "jsonrpsee-core 0.10.1", + "jsonrpsee-types 0.10.1", ] [[package]] @@ -3287,12 +3332,12 @@ dependencies = [ "async-channel", "futures-channel", "futures-util", - "jsonrpsee-core", - "jsonrpsee-types", + "jsonrpsee-core 0.9.0", + "jsonrpsee-types 0.9.0", "serde_json", "soketto", "tokio", - "tokio-util", + "tokio-util 0.6.9", "tracing", ] @@ -4803,7 +4848,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -4817,7 +4862,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -4833,7 +4878,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -4848,7 +4893,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -4872,7 +4917,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4892,7 +4937,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4911,7 +4956,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -4926,7 +4971,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "beefy-primitives", "frame-support", @@ -4942,7 +4987,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4967,7 +5012,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5049,7 +5094,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5068,7 +5113,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5085,7 +5130,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5101,7 +5146,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5124,7 +5169,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5142,7 +5187,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5157,7 +5202,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5180,7 +5225,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5196,7 +5241,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5216,7 +5261,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5233,7 +5278,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5250,7 +5295,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5268,7 +5313,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -5284,9 +5329,9 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ - "jsonrpsee", + "jsonrpsee 0.9.0", "pallet-mmr-primitives", "parity-scale-codec", "serde", @@ -5300,7 +5345,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5315,7 +5360,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -5329,7 +5374,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -5346,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5369,7 +5414,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5385,7 +5430,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5400,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -5414,7 +5459,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5430,7 +5475,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -5451,7 +5496,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5467,7 +5512,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -5481,7 +5526,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5504,7 +5549,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5515,7 +5560,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "log", "sp-arithmetic", @@ -5524,7 +5569,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -5538,7 +5583,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5556,7 +5601,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5575,7 +5620,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-support", "frame-system", @@ -5592,10 +5637,10 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "anyhow", - "jsonrpsee", + "jsonrpsee 0.9.0", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", "sp-api", @@ -5608,7 +5653,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5619,7 +5664,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5636,7 +5681,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -5652,7 +5697,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-benchmarking", "frame-support", @@ -6969,7 +7014,7 @@ version = "0.9.18" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", - "jsonrpsee", + "jsonrpsee 0.9.0", "pallet-mmr-rpc", "pallet-transaction-payment-rpc", "polkadot-primitives", @@ -8082,10 +8127,10 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "env_logger 0.9.0", - "jsonrpsee", + "jsonrpsee 0.10.1", "log", "parity-scale-codec", "serde", @@ -8431,7 +8476,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "log", "sp-core", @@ -8442,7 +8487,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "futures 0.3.21", @@ -8469,7 +8514,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8492,7 +8537,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8508,7 +8553,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8525,7 +8570,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8536,7 +8581,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "chrono", "clap", @@ -8574,7 +8619,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "fnv", "futures 0.3.21", @@ -8602,7 +8647,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "hash-db", "kvdb", @@ -8627,7 +8672,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "futures 0.3.21", @@ -8651,7 +8696,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "fork-tree", @@ -8694,10 +8739,10 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "futures 0.3.21", - "jsonrpsee", + "jsonrpsee 0.9.0", "sc-consensus-babe", "sc-consensus-epochs", "sc-rpc-api", @@ -8716,7 +8761,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8729,7 +8774,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "futures 0.3.21", @@ -8754,7 +8799,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "sc-client-api", "sp-authorship", @@ -8765,7 +8810,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "lazy_static", "lru 0.7.4", @@ -8792,7 +8837,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "environmental", "parity-scale-codec", @@ -8809,7 +8854,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "log", "parity-scale-codec", @@ -8825,7 +8870,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8843,7 +8888,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "ahash", "async-trait", @@ -8883,11 +8928,11 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "finality-grandpa", "futures 0.3.21", - "jsonrpsee", + "jsonrpsee 0.9.0", "log", "parity-scale-codec", "sc-client-api", @@ -8904,7 +8949,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "ansi_term", "futures 0.3.21", @@ -8921,7 +8966,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "hex", @@ -8936,7 +8981,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "asynchronous-codec 0.5.0", @@ -8985,7 +9030,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "ahash", "futures 0.3.21", @@ -9002,7 +9047,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "bytes", "fnv", @@ -9030,7 +9075,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "futures 0.3.21", "libp2p", @@ -9043,7 +9088,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9052,14 +9097,13 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "anyhow", "async-trait", "futures 0.3.21", "hash-db", - "jsonrpc-core", - "jsonrpsee", + "jsonrpsee 0.9.0", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -9084,11 +9128,11 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "anyhow", "futures 0.3.21", - "jsonrpsee", + "jsonrpsee 0.9.0", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -9108,10 +9152,10 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "anyhow", - "jsonrpsee", + "jsonrpsee 0.9.0", "log", "serde_json", "substrate-prometheus-endpoint", @@ -9121,7 +9165,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "directories", @@ -9129,7 +9173,7 @@ dependencies = [ "futures 0.3.21", "futures-timer", "hash-db", - "jsonrpsee", + "jsonrpsee 0.9.0", "log", "parity-scale-codec", "parity-util-mem", @@ -9184,7 +9228,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "log", "parity-scale-codec", @@ -9198,10 +9242,10 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "anyhow", - "jsonrpsee", + "jsonrpsee 0.9.0", "parity-scale-codec", "sc-chain-spec", "sc-client-api", @@ -9218,7 +9262,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "chrono", "futures 0.3.21", @@ -9236,7 +9280,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "ansi_term", "atty", @@ -9267,7 +9311,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9278,7 +9322,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9305,7 +9349,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "futures 0.3.21", "log", @@ -9318,7 +9362,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9831,7 +9875,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "hash-db", "log", @@ -9848,7 +9892,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "blake2 0.10.2", "proc-macro-crate", @@ -9860,7 +9904,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "scale-info", @@ -9873,7 +9917,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "integer-sqrt", "num-traits", @@ -9888,7 +9932,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "scale-info", @@ -9901,7 +9945,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "parity-scale-codec", @@ -9913,7 +9957,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "sp-api", @@ -9925,7 +9969,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "futures 0.3.21", "log", @@ -9943,7 +9987,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "futures 0.3.21", @@ -9962,7 +10006,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "merlin", @@ -9985,7 +10029,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "scale-info", @@ -9999,7 +10043,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -10011,7 +10055,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "base58", "bitflags", @@ -10057,7 +10101,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "blake2 0.10.2", "byteorder", @@ -10071,7 +10115,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "proc-macro2", "quote", @@ -10082,7 +10126,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10091,7 +10135,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "proc-macro2", "quote", @@ -10101,7 +10145,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "environmental", "parity-scale-codec", @@ -10112,7 +10156,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "finality-grandpa", "log", @@ -10130,7 +10174,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10144,7 +10188,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "futures 0.3.21", "hash-db", @@ -10169,7 +10213,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "lazy_static", "sp-core", @@ -10180,7 +10224,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "futures 0.3.21", @@ -10197,7 +10241,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "thiserror", "zstd", @@ -10206,7 +10250,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "scale-info", @@ -10220,7 +10264,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "sp-api", "sp-core", @@ -10230,7 +10274,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "backtrace", "lazy_static", @@ -10240,7 +10284,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "rustc-hash", "serde", @@ -10250,7 +10294,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "either", "hash256-std-hasher", @@ -10272,7 +10316,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10289,7 +10333,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "Inflector", "proc-macro-crate", @@ -10301,7 +10345,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "serde", "serde_json", @@ -10310,7 +10354,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "scale-info", @@ -10324,7 +10368,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "scale-info", @@ -10335,7 +10379,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "hash-db", "log", @@ -10357,12 +10401,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10375,7 +10419,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "log", "sp-core", @@ -10388,7 +10432,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "futures-timer", @@ -10404,7 +10448,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "sp-std", @@ -10416,7 +10460,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "sp-api", "sp-runtime", @@ -10425,7 +10469,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "log", @@ -10441,7 +10485,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "hash-db", "memory-db", @@ -10457,7 +10501,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10474,7 +10518,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10485,7 +10529,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "impl-trait-for-tuples", "log", @@ -10540,7 +10584,7 @@ dependencies = [ "frame-election-provider-support", "frame-support", "frame-system", - "jsonrpsee", + "jsonrpsee 0.10.1", "kusama-runtime", "log", "pallet-balances", @@ -10686,7 +10730,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "platforms", ] @@ -10694,11 +10738,11 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", - "jsonrpsee", + "jsonrpsee 0.9.0", "log", "parity-scale-codec", "sc-client-api", @@ -10715,7 +10759,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "futures-util", "hyper", @@ -10728,10 +10772,10 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "anyhow", - "jsonrpsee", + "jsonrpsee 0.9.0", "log", "parity-scale-codec", "sc-client-api", @@ -10750,7 +10794,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "async-trait", "futures 0.3.21", @@ -10776,7 +10820,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -10786,7 +10830,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10797,7 +10841,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "ansi_term", "build-helper", @@ -11259,6 +11303,20 @@ dependencies = [ "tokio", ] +[[package]] +name = "tokio-util" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764" +dependencies = [ + "bytes", + "futures-core", + "futures-io", + "futures-sink", + "pin-project-lite 0.2.7", + "tokio", +] + [[package]] name = "toml" version = "0.5.8" @@ -11476,10 +11534,10 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#c1e51c1244074ecd4f2a2604ba62114dab4bafca" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#70375475777c26d142969dd627ef136b3ad8cdee" dependencies = [ "clap", - "jsonrpsee", + "jsonrpsee 0.10.1", "log", "parity-scale-codec", "remote-externalities", diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index a6b97d61a5eb..b476f132e9dc 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } clap = { version = "3.1", features = ["derive", "env"] } tracing-subscriber = { version = "0.3.10", features = ["env-filter"] } -jsonrpsee = { version = "0.9", features = ["ws-client", "macros"] } +jsonrpsee = { version = "0.10.1", features = ["ws-client", "macros"] } log = "0.4.16" paste = "1.0.7" serde = "1.0.136" diff --git a/utils/staking-miner/src/rpc.rs b/utils/staking-miner/src/rpc.rs index ad973be2a32e..f92d9bb94cdc 100644 --- a/utils/staking-miner/src/rpc.rs +++ b/utils/staking-miner/src/rpc.rs @@ -72,17 +72,17 @@ pub trait RpcApi { /// /// See [`TransactionStatus`](sc_transaction_pool_api::TransactionStatus) for details on /// transaction life cycle. - // - // TODO: https://github.com/paritytech/jsonrpsee/issues/698. #[subscription( name = "author_submitAndWatchExtrinsic" => "author_extrinsicUpdate", - item = TransactionStatus, + unsubscribe = "author_unwatchExtrinsic", + item = TransactionStatus )] fn watch_extrinsic(&self, bytes: &Bytes) -> RpcResult<()>; /// New head subscription. #[subscription( name = "chain_subscribeNewHeads" => "newHead", + unsubscribe = "chain_unsubscribeNewHeads", item = Header )] fn subscribe_new_heads(&self) -> RpcResult<()>; @@ -90,6 +90,7 @@ pub trait RpcApi { /// Finalized head subscription. #[subscription( name = "chain_subscribeFinalizedHeads" => "chain_finalizedHead", + unsubscribe = "chain_unsubscribeFinalizedHeads", item = Header )] fn subscribe_finalized_heads(&self) -> RpcResult<()>; From 56956642f8ae7aabe818f743cd9cd0ef7617a80f Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 19 Apr 2022 16:15:24 +0200 Subject: [PATCH 05/23] fix build --- node/test/service/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node/test/service/src/lib.rs b/node/test/service/src/lib.rs index daff69460231..466042763310 100644 --- a/node/test/service/src/lib.rs +++ b/node/test/service/src/lib.rs @@ -188,6 +188,8 @@ pub fn node_config( rpc_ws: None, rpc_ipc: None, rpc_max_payload: None, + rpc_max_request_size: None, + rpc_max_response_size: None, rpc_ws_max_connections: None, rpc_cors: None, rpc_methods: Default::default(), From be4ac886c8301f6d776bc9731bbe1cd63e0d2c9e Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 19 Apr 2022 19:08:03 +0200 Subject: [PATCH 06/23] update substrate --- Cargo.lock | 332 ++++++++++++++++++++++++++--------------------------- 1 file changed, 166 insertions(+), 166 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 121813f84fd6..e694b9b71ad4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -444,7 +444,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "beefy-primitives", "fnv", @@ -478,7 +478,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -498,12 +498,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "scale-info", @@ -2138,7 +2138,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", ] @@ -2156,7 +2156,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -2178,7 +2178,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "Inflector", "chrono", @@ -2226,7 +2226,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2237,7 +2237,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2253,7 +2253,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -2281,7 +2281,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "bitflags", "frame-metadata", @@ -2311,7 +2311,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2323,7 +2323,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2335,7 +2335,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "proc-macro2", "quote", @@ -2345,7 +2345,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2368,7 +2368,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -2379,7 +2379,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "log", @@ -2396,7 +2396,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -2411,7 +2411,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "sp-api", @@ -2420,7 +2420,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "sp-api", @@ -2599,7 +2599,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "chrono", "frame-election-provider-support", @@ -4824,7 +4824,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4838,7 +4838,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -4854,7 +4854,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -4869,7 +4869,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4893,7 +4893,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4913,7 +4913,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4932,7 +4932,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4947,7 +4947,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "beefy-primitives", "frame-support", @@ -4963,7 +4963,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4986,7 +4986,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5068,7 +5068,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5087,7 +5087,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5104,7 +5104,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5120,7 +5120,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5143,7 +5143,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5156,7 +5156,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5174,7 +5174,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5189,7 +5189,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5212,7 +5212,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5228,7 +5228,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5248,7 +5248,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5265,7 +5265,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5282,7 +5282,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5300,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5331,7 +5331,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -5345,7 +5345,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -5362,7 +5362,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5385,7 +5385,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5401,7 +5401,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5416,7 +5416,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -5430,7 +5430,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5446,7 +5446,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -5467,7 +5467,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5483,7 +5483,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -5497,7 +5497,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5520,7 +5520,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5531,7 +5531,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "log", "sp-arithmetic", @@ -5540,7 +5540,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -5554,7 +5554,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5572,7 +5572,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5591,7 +5591,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-support", "frame-system", @@ -5608,7 +5608,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "anyhow", "jsonrpsee", @@ -5624,7 +5624,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5635,7 +5635,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5652,7 +5652,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5668,7 +5668,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-benchmarking", "frame-support", @@ -8131,7 +8131,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8503,7 +8503,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "log", "sp-core", @@ -8514,7 +8514,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "futures 0.3.21", @@ -8541,7 +8541,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8564,7 +8564,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8580,7 +8580,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8597,7 +8597,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8608,7 +8608,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "chrono", "clap", @@ -8646,7 +8646,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "fnv", "futures 0.3.21", @@ -8674,7 +8674,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "hash-db", "kvdb", @@ -8699,7 +8699,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "futures 0.3.21", @@ -8723,7 +8723,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "fork-tree", @@ -8766,7 +8766,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures 0.3.21", "jsonrpsee", @@ -8788,7 +8788,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8801,7 +8801,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "futures 0.3.21", @@ -8826,7 +8826,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "sc-client-api", "sp-authorship", @@ -8837,7 +8837,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "lazy_static", "lru 0.7.5", @@ -8864,7 +8864,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "environmental", "parity-scale-codec", @@ -8881,7 +8881,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "log", "parity-scale-codec", @@ -8897,7 +8897,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8915,7 +8915,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "ahash", "async-trait", @@ -8955,7 +8955,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -8976,7 +8976,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "ansi_term", "futures 0.3.21", @@ -8993,7 +8993,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "hex", @@ -9008,7 +9008,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "asynchronous-codec 0.5.0", @@ -9057,7 +9057,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "ahash", "futures 0.3.21", @@ -9074,7 +9074,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "bytes", "fnv", @@ -9102,7 +9102,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures 0.3.21", "libp2p", @@ -9115,7 +9115,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9124,7 +9124,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "anyhow", "async-trait", @@ -9155,7 +9155,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "anyhow", "futures 0.3.21", @@ -9179,7 +9179,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "anyhow", "jsonrpsee", @@ -9192,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "directories", @@ -9256,7 +9256,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "log", "parity-scale-codec", @@ -9270,7 +9270,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "anyhow", "jsonrpsee", @@ -9290,7 +9290,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures 0.3.21", "libc", @@ -9309,7 +9309,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "chrono", "futures 0.3.21", @@ -9327,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "ansi_term", "atty", @@ -9358,7 +9358,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9369,7 +9369,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9396,7 +9396,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures 0.3.21", "log", @@ -9409,7 +9409,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9922,7 +9922,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "hash-db", "log", @@ -9939,7 +9939,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "blake2 0.10.2", "proc-macro-crate", @@ -9951,7 +9951,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9964,7 +9964,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "integer-sqrt", "num-traits", @@ -9979,7 +9979,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9992,7 +9992,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "parity-scale-codec", @@ -10004,7 +10004,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "sp-api", @@ -10016,7 +10016,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures 0.3.21", "log", @@ -10034,7 +10034,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "futures 0.3.21", @@ -10053,7 +10053,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "merlin", @@ -10076,7 +10076,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "scale-info", @@ -10090,7 +10090,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -10102,7 +10102,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "base58", "bitflags", @@ -10148,7 +10148,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "blake2 0.10.2", "byteorder", @@ -10162,7 +10162,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "proc-macro2", "quote", @@ -10173,7 +10173,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10182,7 +10182,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "proc-macro2", "quote", @@ -10192,7 +10192,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "environmental", "parity-scale-codec", @@ -10203,7 +10203,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "finality-grandpa", "log", @@ -10221,7 +10221,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10235,7 +10235,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures 0.3.21", "hash-db", @@ -10260,7 +10260,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "lazy_static", "sp-core", @@ -10271,7 +10271,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "futures 0.3.21", @@ -10288,7 +10288,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "thiserror", "zstd", @@ -10297,7 +10297,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "log", "parity-scale-codec", @@ -10312,7 +10312,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "scale-info", @@ -10326,7 +10326,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "sp-api", "sp-core", @@ -10336,7 +10336,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "backtrace", "lazy_static", @@ -10346,7 +10346,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "rustc-hash", "serde", @@ -10356,7 +10356,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "either", "hash256-std-hasher", @@ -10378,7 +10378,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10395,7 +10395,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "Inflector", "proc-macro-crate", @@ -10407,7 +10407,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "serde", "serde_json", @@ -10416,7 +10416,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "scale-info", @@ -10430,7 +10430,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "scale-info", @@ -10441,7 +10441,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "hash-db", "log", @@ -10463,12 +10463,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10481,7 +10481,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "log", "sp-core", @@ -10494,7 +10494,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "futures-timer", @@ -10510,7 +10510,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "sp-std", @@ -10522,7 +10522,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "sp-api", "sp-runtime", @@ -10531,7 +10531,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "log", @@ -10547,7 +10547,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "hash-db", "memory-db", @@ -10563,7 +10563,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10580,7 +10580,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10591,7 +10591,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "impl-trait-for-tuples", "log", @@ -10782,7 +10782,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "platforms", ] @@ -10790,7 +10790,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -10811,7 +10811,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures-util", "hyper", @@ -10824,7 +10824,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "anyhow", "jsonrpsee", @@ -10846,7 +10846,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "async-trait", "futures 0.3.21", @@ -10872,7 +10872,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -10882,7 +10882,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10893,7 +10893,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "ansi_term", "build-helper", @@ -11596,7 +11596,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5c1977d0868bb4a76cd9c999e2c57b27966f6e74" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" dependencies = [ "clap", "jsonrpsee", From f36321d1c44638ffb61ffa3d6da144de5118b7f5 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 19 Apr 2022 19:39:41 +0200 Subject: [PATCH 07/23] fix tests --- parachain/test-parachains/undying/collator/tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parachain/test-parachains/undying/collator/tests/integration.rs b/parachain/test-parachains/undying/collator/tests/integration.rs index 1adbe4e5db91..cf00ffa35125 100644 --- a/parachain/test-parachains/undying/collator/tests/integration.rs +++ b/parachain/test-parachains/undying/collator/tests/integration.rs @@ -20,7 +20,7 @@ const PUPPET_EXE: &str = env!("CARGO_BIN_EXE_undying_collator_puppet_worker"); // If this test is failing, make sure to run all tests with the `real-overseer` feature being enabled. -#[substrate_test_utils::test] +#[substrate_test_utils::test(flavor = "multi_thread")] async fn collating_using_undying_collator() { use polkadot_primitives::v2::Id as ParaId; use sp_keyring::AccountKeyring::*; From fe61446ef0e77ba52114fcf0c4ee10f806d91d11 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 19 Apr 2022 22:43:01 +0200 Subject: [PATCH 08/23] update substrate --- Cargo.lock | 333 +++++++++--------- node/network/approval-distribution/Cargo.toml | 4 +- node/network/gossip-support/Cargo.toml | 16 +- .../network/statement-distribution/Cargo.toml | 20 +- 4 files changed, 187 insertions(+), 186 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9f48294cb86..631a0fbea8f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -444,7 +444,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "beefy-primitives", "fnv", @@ -478,7 +478,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -498,12 +498,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "scale-info", @@ -2138,7 +2138,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", ] @@ -2156,7 +2156,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -2178,7 +2178,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "Inflector", "chrono", @@ -2226,7 +2226,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2237,7 +2237,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2253,7 +2253,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -2281,7 +2281,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "bitflags", "frame-metadata", @@ -2311,7 +2311,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2323,7 +2323,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2335,7 +2335,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "proc-macro2", "quote", @@ -2345,7 +2345,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2368,7 +2368,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -2379,7 +2379,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "log", @@ -2396,7 +2396,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -2411,7 +2411,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "sp-api", @@ -2420,7 +2420,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "sp-api", @@ -4824,7 +4824,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -4838,7 +4838,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -4854,7 +4854,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -4869,7 +4869,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -4893,7 +4893,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4932,7 +4932,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -4947,7 +4947,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "beefy-primitives", "frame-support", @@ -4963,7 +4963,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4986,7 +4986,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5068,7 +5068,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5087,7 +5087,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5104,7 +5104,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5120,7 +5120,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5143,7 +5143,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5156,7 +5156,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5174,7 +5174,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5189,7 +5189,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5212,7 +5212,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5228,7 +5228,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5248,7 +5248,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5265,7 +5265,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5282,7 +5282,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5300,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5331,7 +5331,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -5345,7 +5345,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -5362,7 +5362,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5385,7 +5385,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5401,7 +5401,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5416,7 +5416,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -5430,7 +5430,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5446,7 +5446,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -5467,7 +5467,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5483,7 +5483,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -5497,7 +5497,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5520,7 +5520,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5531,7 +5531,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "log", "sp-arithmetic", @@ -5540,7 +5540,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -5554,7 +5554,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5572,7 +5572,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5591,7 +5591,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-support", "frame-system", @@ -5608,7 +5608,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "anyhow", "jsonrpsee", @@ -5624,7 +5624,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5635,7 +5635,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5652,7 +5652,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5668,7 +5668,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-benchmarking", "frame-support", @@ -8508,7 +8508,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "log", "sp-core", @@ -8519,7 +8519,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "futures 0.3.21", @@ -8546,7 +8546,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8569,7 +8569,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8585,7 +8585,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8602,7 +8602,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8613,7 +8613,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "chrono", "clap", @@ -8651,7 +8651,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "fnv", "futures 0.3.21", @@ -8679,7 +8679,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "hash-db", "kvdb", @@ -8704,7 +8704,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "futures 0.3.21", @@ -8728,7 +8728,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "fork-tree", @@ -8771,7 +8771,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures 0.3.21", "jsonrpsee", @@ -8793,7 +8793,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8806,7 +8806,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "futures 0.3.21", @@ -8831,7 +8831,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "sc-client-api", "sp-authorship", @@ -8842,7 +8842,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "lazy_static", "lru 0.7.5", @@ -8869,7 +8869,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "environmental", "parity-scale-codec", @@ -8886,7 +8886,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "log", "parity-scale-codec", @@ -8902,7 +8902,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8920,7 +8920,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "ahash", "async-trait", @@ -8960,7 +8960,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -8981,7 +8981,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "ansi_term", "futures 0.3.21", @@ -8998,7 +8998,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "hex", @@ -9013,7 +9013,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "asynchronous-codec 0.5.0", @@ -9062,7 +9062,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "ahash", "futures 0.3.21", @@ -9079,7 +9079,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "bytes", "fnv", @@ -9107,7 +9107,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures 0.3.21", "libp2p", @@ -9120,7 +9120,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9129,7 +9129,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "anyhow", "async-trait", @@ -9160,7 +9160,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "anyhow", "futures 0.3.21", @@ -9184,7 +9184,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "anyhow", "jsonrpsee", @@ -9197,7 +9197,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "directories", @@ -9261,7 +9261,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "log", "parity-scale-codec", @@ -9275,7 +9275,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "anyhow", "jsonrpsee", @@ -9295,7 +9295,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures 0.3.21", "libc", @@ -9314,7 +9314,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "chrono", "futures 0.3.21", @@ -9332,7 +9332,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "ansi_term", "atty", @@ -9363,7 +9363,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9374,7 +9374,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9401,7 +9401,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures 0.3.21", "log", @@ -9414,7 +9414,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9744,9 +9744,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99c3bd8169c58782adad9290a9af5939994036b76187f7b4f0e6de91dbbfc0ec" +checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676" dependencies = [ "cfg-if 1.0.0", "cpufeatures 0.2.1", @@ -9927,7 +9927,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "hash-db", "log", @@ -9944,7 +9944,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "blake2 0.10.2", "proc-macro-crate", @@ -9956,7 +9956,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "scale-info", @@ -9969,7 +9969,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "integer-sqrt", "num-traits", @@ -9984,7 +9984,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "scale-info", @@ -9997,7 +9997,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "parity-scale-codec", @@ -10009,7 +10009,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "sp-api", @@ -10021,7 +10021,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures 0.3.21", "log", @@ -10039,7 +10039,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "futures 0.3.21", @@ -10058,7 +10058,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "merlin", @@ -10081,7 +10081,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10095,7 +10095,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -10107,7 +10107,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "base58", "bitflags", @@ -10153,12 +10153,12 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "blake2 0.10.2", "byteorder", "digest 0.10.3", - "sha2 0.10.1", + "sha2 0.10.2", "sha3 0.10.0", "sp-std", "twox-hash", @@ -10167,7 +10167,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "proc-macro2", "quote", @@ -10178,7 +10178,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10187,7 +10187,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "proc-macro2", "quote", @@ -10197,7 +10197,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "environmental", "parity-scale-codec", @@ -10208,7 +10208,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "finality-grandpa", "log", @@ -10226,7 +10226,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10240,7 +10240,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures 0.3.21", "hash-db", @@ -10265,7 +10265,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "lazy_static", "sp-core", @@ -10276,7 +10276,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "futures 0.3.21", @@ -10293,7 +10293,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "thiserror", "zstd", @@ -10302,7 +10302,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "log", "parity-scale-codec", @@ -10317,7 +10317,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10331,7 +10331,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "sp-api", "sp-core", @@ -10341,7 +10341,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "backtrace", "lazy_static", @@ -10351,7 +10351,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "rustc-hash", "serde", @@ -10361,7 +10361,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "either", "hash256-std-hasher", @@ -10383,7 +10383,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10400,7 +10400,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "Inflector", "proc-macro-crate", @@ -10412,7 +10412,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "serde", "serde_json", @@ -10421,7 +10421,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10435,7 +10435,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10446,7 +10446,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "hash-db", "log", @@ -10468,12 +10468,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10486,7 +10486,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "log", "sp-core", @@ -10499,7 +10499,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "futures-timer", @@ -10515,7 +10515,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "sp-std", @@ -10527,7 +10527,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "sp-api", "sp-runtime", @@ -10536,7 +10536,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "log", @@ -10552,7 +10552,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "hash-db", "memory-db", @@ -10568,7 +10568,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10585,7 +10585,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10596,7 +10596,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "impl-trait-for-tuples", "log", @@ -10614,11 +10614,12 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "ss58-registry" -version = "1.12.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8319f44e20b42e5c11b88b1ad4130c35fe2974665a007b08b02322070177136a" +checksum = "7b84a70894df7a73666e0694f44b41a9571625e9546fb58a0818a565d2c7e084" dependencies = [ "Inflector", + "num-format", "proc-macro2", "quote", "serde", @@ -10795,7 +10796,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -10816,7 +10817,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures-util", "hyper", @@ -10829,7 +10830,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "anyhow", "jsonrpsee", @@ -10851,7 +10852,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "async-trait", "futures 0.3.21", @@ -10877,7 +10878,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -10887,7 +10888,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10898,7 +10899,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "ansi_term", "build-helper", diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index 638e63a3eb2a..4f089d0e67b4 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -16,8 +16,8 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "dp-jsonrpsee-integration-2" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index 54984e748fac..15eded335fdc 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -5,10 +5,10 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-node-network-protocol = { path = "../protocol" } polkadot-node-subsystem = { path = "../../subsystem" } @@ -22,10 +22,10 @@ rand_chacha = { version = "0.3.1", default-features = false } gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index 156fe2fb5223..b3fd19a55166 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -9,8 +9,8 @@ edition = "2021" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } @@ -24,13 +24,13 @@ fatality = "0.0.6" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } futures-timer = "3.0.2" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } From b479cc3e3a2e7b55984123a47322a53c4068d7f2 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 19 Apr 2022 23:40:55 +0200 Subject: [PATCH 09/23] update substrate --- Cargo.lock | 40 +++++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 631a0fbea8f5..1cee79fc33b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1094,16 +1094,16 @@ dependencies = [ [[package]] name = "clap" -version = "3.1.6" +version = "3.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8c93436c21e4698bacadf42917db28b23017027a4deccb35dbe47a7e7840123" +checksum = "6aad2534fad53df1cc12519c5cda696dd3e20e6118a027e24054aea14a0bdcbe" dependencies = [ "atty", "bitflags", "clap_derive", + "clap_lex", "indexmap", "lazy_static", - "os_str_bytes", "strsim", "termcolor", "textwrap", @@ -1111,9 +1111,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "3.1.4" +version = "3.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da95d038ede1a964ce99f49cbe27a7fb538d1da595e4b4f70b8c8f338d17bf16" +checksum = "a3aab4734e083b809aaf5794e14e756d1c798d2c69c7f7de7a09a2f5214993c1" dependencies = [ "heck 0.4.0", "proc-macro-error", @@ -1122,6 +1122,15 @@ dependencies = [ "syn", ] +[[package]] +name = "clap_lex" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "189ddd3b5d32a70b35e7686054371742a937b0d99128e76dde6340210e966669" +dependencies = [ + "os_str_bytes", +] + [[package]] name = "coarsetime" version = "0.1.22" @@ -1823,9 +1832,9 @@ dependencies = [ [[package]] name = "enumflags2" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b3ab37dc79652c9d85f1f7b6070d77d321d2467f5fe7b00d6b7a86c57b092ae" +checksum = "e75d4cd21b95383444831539909fbb14b9dc3fdceb2a6f5d36577329a1f55ccb" dependencies = [ "enumflags2_derive", ] @@ -2599,7 +2608,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "chrono", "frame-election-provider-support", @@ -4793,9 +4802,6 @@ name = "os_str_bytes" version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" -dependencies = [ - "memchr", -] [[package]] name = "output_vt100" @@ -4913,7 +4919,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "frame-election-provider-support", "frame-support", @@ -8136,7 +8142,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8394,9 +8400,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.33.7" +version = "0.33.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "938a344304321a9da4973b9ff4f9f8db9caf4597dfd9dda6a60b523340a0fff0" +checksum = "03627528abcc4a365554d32a9f3bbf67f7694c102cfeda792dc86a2d6057cc85" dependencies = [ "bitflags", "errno", @@ -10788,7 +10794,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "platforms", ] @@ -11602,7 +11608,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#0ed8413bdbacfa335ddeb6c824c0028a105445f4" +source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" dependencies = [ "clap", "jsonrpsee", From 85676a4ed0a29c7e423bd95de084874e6a8a4b81 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 19 Apr 2022 23:49:56 +0200 Subject: [PATCH 10/23] revert Cargo.toml --- Cargo.toml | 2 +- bridges/bin/millau/node/Cargo.toml | 60 ++++---- bridges/bin/millau/runtime/Cargo.toml | 66 ++++----- bridges/bin/rialto-parachain/node/Cargo.toml | 66 ++++----- .../bin/rialto-parachain/runtime/Cargo.toml | 52 +++---- bridges/bin/rialto/node/Cargo.toml | 94 ++++++------ bridges/bin/rialto/runtime/Cargo.toml | 70 ++++----- bridges/bin/runtime-common/Cargo.toml | 22 +-- bridges/fuzz/storage-proof/Cargo.toml | 10 +- bridges/modules/dispatch/Cargo.toml | 12 +- bridges/modules/grandpa/Cargo.toml | 18 +-- bridges/modules/messages/Cargo.toml | 16 +-- .../modules/shift-session-manager/Cargo.toml | 14 +- bridges/modules/token-swap/Cargo.toml | 16 +-- bridges/primitives/chain-kusama/Cargo.toml | 10 +- bridges/primitives/chain-millau/Cargo.toml | 16 +-- bridges/primitives/chain-polkadot/Cargo.toml | 10 +- .../chain-rialto-parachain/Cargo.toml | 12 +- bridges/primitives/chain-rialto/Cargo.toml | 12 +- bridges/primitives/chain-rococo/Cargo.toml | 10 +- bridges/primitives/chain-westend/Cargo.toml | 10 +- bridges/primitives/chain-wococo/Cargo.toml | 6 +- bridges/primitives/header-chain/Cargo.toml | 10 +- .../primitives/message-dispatch/Cargo.toml | 4 +- bridges/primitives/messages/Cargo.toml | 8 +- bridges/primitives/polkadot-core/Cargo.toml | 14 +- bridges/primitives/runtime/Cargo.toml | 14 +- bridges/primitives/test-utils/Cargo.toml | 8 +- bridges/primitives/token-swap/Cargo.toml | 8 +- bridges/relays/bin-substrate/Cargo.toml | 14 +- bridges/relays/client-kusama/Cargo.toml | 6 +- bridges/relays/client-millau/Cargo.toml | 10 +- bridges/relays/client-polkadot/Cargo.toml | 6 +- .../relays/client-rialto-parachain/Cargo.toml | 6 +- bridges/relays/client-rialto/Cargo.toml | 10 +- bridges/relays/client-rococo/Cargo.toml | 6 +- bridges/relays/client-substrate/Cargo.toml | 30 ++-- bridges/relays/client-westend/Cargo.toml | 6 +- bridges/relays/client-wococo/Cargo.toml | 6 +- bridges/relays/lib-substrate-relay/Cargo.toml | 14 +- bridges/relays/messages/Cargo.toml | 2 +- bridges/relays/utils/Cargo.toml | 2 +- cli/Cargo.toml | 16 +-- core-primitives/Cargo.toml | 6 +- erasure-coding/Cargo.toml | 4 +- node/client/Cargo.toml | 56 ++++---- node/collation-generation/Cargo.toml | 4 +- node/core/approval-voting/Cargo.toml | 18 +-- node/core/av-store/Cargo.toml | 4 +- node/core/backing/Cargo.toml | 12 +- node/core/bitfield-signing/Cargo.toml | 2 +- node/core/candidate-validation/Cargo.toml | 6 +- node/core/chain-api/Cargo.toml | 8 +- node/core/chain-selection/Cargo.toml | 2 +- node/core/dispute-coordinator/Cargo.toml | 8 +- node/core/parachains-inherent/Cargo.toml | 6 +- node/core/provisioner/Cargo.toml | 4 +- node/core/pvf-checker/Cargo.toml | 12 +- node/core/pvf/Cargo.toml | 18 +-- node/core/runtime-api/Cargo.toml | 12 +- node/jaeger/Cargo.toml | 4 +- node/malus/Cargo.toml | 6 +- node/metrics/Cargo.toml | 16 +-- node/network/approval-distribution/Cargo.toml | 4 +- .../availability-distribution/Cargo.toml | 12 +- node/network/availability-recovery/Cargo.toml | 10 +- node/network/bitfield-distribution/Cargo.toml | 8 +- node/network/bridge/Cargo.toml | 8 +- node/network/collator-protocol/Cargo.toml | 12 +- node/network/dispute-distribution/Cargo.toml | 12 +- node/network/gossip-support/Cargo.toml | 16 +-- node/network/protocol/Cargo.toml | 4 +- .../network/statement-distribution/Cargo.toml | 20 +-- node/overseer/Cargo.toml | 6 +- node/primitives/Cargo.toml | 12 +- node/service/Cargo.toml | 92 ++++++------ node/subsystem-test-helpers/Cargo.toml | 10 +- node/subsystem-types/Cargo.toml | 4 +- node/subsystem-util/Cargo.toml | 6 +- node/test/client/Cargo.toml | 28 ++-- node/test/service/Cargo.toml | 62 ++++---- parachain/Cargo.toml | 8 +- parachain/test-parachains/Cargo.toml | 2 +- parachain/test-parachains/adder/Cargo.toml | 6 +- .../test-parachains/adder/collator/Cargo.toml | 12 +- parachain/test-parachains/halt/Cargo.toml | 2 +- parachain/test-parachains/undying/Cargo.toml | 6 +- .../undying/collator/Cargo.toml | 12 +- primitives/Cargo.toml | 30 ++-- primitives/test-helpers/Cargo.toml | 6 +- rpc/Cargo.toml | 46 +++--- runtime/common/Cargo.toml | 60 ++++---- runtime/common/slot_range_helper/Cargo.toml | 4 +- runtime/kusama/Cargo.toml | 134 +++++++++--------- runtime/kusama/constants/Cargo.toml | 4 +- runtime/metrics/Cargo.toml | 4 +- runtime/parachains/Cargo.toml | 52 +++---- runtime/polkadot/Cargo.toml | 126 ++++++++-------- runtime/polkadot/constants/Cargo.toml | 4 +- runtime/rococo/Cargo.toml | 92 ++++++------ runtime/rococo/constants/Cargo.toml | 4 +- runtime/test-runtime/Cargo.toml | 80 +++++------ runtime/test-runtime/constants/Cargo.toml | 4 +- runtime/westend/Cargo.toml | 126 ++++++++-------- runtime/westend/constants/Cargo.toml | 4 +- statement-table/Cargo.toml | 2 +- utils/generate-bags/Cargo.toml | 4 +- utils/remote-ext-tests/bags-list/Cargo.toml | 8 +- utils/staking-miner/Cargo.toml | 32 ++--- xcm/pallet-xcm-benchmarks/Cargo.toml | 20 +-- xcm/pallet-xcm/Cargo.toml | 14 +- xcm/xcm-builder/Cargo.toml | 18 +-- xcm/xcm-executor/Cargo.toml | 14 +- xcm/xcm-executor/integration-tests/Cargo.toml | 14 +- xcm/xcm-simulator/Cargo.toml | 6 +- xcm/xcm-simulator/example/Cargo.toml | 14 +- xcm/xcm-simulator/fuzzer/Cargo.toml | 14 +- 117 files changed, 1163 insertions(+), 1163 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 09daa5e463c0..78339014e8a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ assert_cmd = "2.0.4" nix = "0.23.1" tempfile = "3.2.0" tokio = "1.17.0" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-core-primitives = { path = "core-primitives" } [workspace] diff --git a/bridges/bin/millau/node/Cargo.toml b/bridges/bin/millau/node/Cargo.toml index 0a6d616263b7..d45414dff8d9 100644 --- a/bridges/bin/millau/node/Cargo.toml +++ b/bridges/bin/millau/node/Cargo.toml @@ -23,38 +23,38 @@ pallet-bridge-messages = { path = "../../../modules/messages" } # Substrate Dependencies -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -node-inspect = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "dp-jsonrpsee-integration-2" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +node-inspect = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [] diff --git a/bridges/bin/millau/runtime/Cargo.toml b/bridges/bin/millau/runtime/Cargo.toml index d66ed231a563..f709fad8f2c8 100644 --- a/bridges/bin/millau/runtime/Cargo.toml +++ b/bridges/bin/millau/runtime/Cargo.toml @@ -32,45 +32,45 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] bridge-runtime-common = { path = "../../runtime-common", features = ["integrity-test"] } static_assertions = "1.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/bin/rialto-parachain/node/Cargo.toml b/bridges/bin/rialto-parachain/node/Cargo.toml index 38229eaaa34f..da5be341219d 100644 --- a/bridges/bin/rialto-parachain/node/Cargo.toml +++ b/bridges/bin/rialto-parachain/node/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } [[bin]] name = 'rialto-parachain-collator' @@ -32,44 +32,44 @@ jsonrpc-core = '18.0' rialto-parachain-runtime = { path = '../runtime' } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } ## Substrate Client Dependencies -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", features = ['wasmtime'] , branch = "dp-jsonrpsee-integration-2" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", features = ['wasmtime'] , branch = "master" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } ## Substrate Primitive Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } # Cumulus dependencies cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus", branch = "master" } diff --git a/bridges/bin/rialto-parachain/runtime/Cargo.toml b/bridges/bin/rialto-parachain/runtime/Cargo.toml index b7aa42e2628a..00c611d96d74 100644 --- a/bridges/bin/rialto-parachain/runtime/Cargo.toml +++ b/bridges/bin/rialto-parachain/runtime/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [dependencies] codec = { package = 'parity-scale-codec', version = '3.0.0', default-features = false, features = ['derive']} @@ -22,35 +22,35 @@ bp-rialto-parachain = { path = "../../../primitives/chain-rialto-parachain", def # Substrate Dependencies ## Substrate Primitive Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } ## Substrate FRAME Dependencies -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } ## Substrate Pallet Dependencies -pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } # Cumulus Dependencies cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "master", default-features = false } diff --git a/bridges/bin/rialto/node/Cargo.toml b/bridges/bin/rialto/node/Cargo.toml index 43fc7e740f6e..7859ff5aa457 100644 --- a/bridges/bin/rialto/node/Cargo.toml +++ b/bridges/bin/rialto/node/Cargo.toml @@ -28,51 +28,51 @@ rialto-runtime = { path = "../runtime" } # Substrate Dependencies -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -node-inspect = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "dp-jsonrpsee-integration-2" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-authorship = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +node-inspect = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot Dependencies @@ -82,8 +82,8 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, features = [ "full-node", "polkadot-native" ] } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [] diff --git a/bridges/bin/rialto/runtime/Cargo.toml b/bridges/bin/rialto/runtime/Cargo.toml index cecc1777186c..65b2653ce7d0 100644 --- a/bridges/bin/rialto/runtime/Cargo.toml +++ b/bridges/bin/rialto/runtime/Cargo.toml @@ -31,40 +31,40 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } # Polkadot (parachain) Dependencies @@ -78,7 +78,7 @@ libsecp256k1 = { version = "0.7", features = ["hmac"] } static_assertions = "1.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/bin/runtime-common/Cargo.toml b/bridges/bin/runtime-common/Cargo.toml index 81d03761690c..2eb3fe05a1a3 100644 --- a/bridges/bin/runtime-common/Cargo.toml +++ b/bridges/bin/runtime-common/Cargo.toml @@ -25,17 +25,17 @@ pallet-bridge-messages = { path = "../../modules/messages", default-features = f # Substrate dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } [features] default = ["std"] diff --git a/bridges/fuzz/storage-proof/Cargo.toml b/bridges/fuzz/storage-proof/Cargo.toml index accb6dc236e6..b406054bc6e4 100644 --- a/bridges/fuzz/storage-proof/Cargo.toml +++ b/bridges/fuzz/storage-proof/Cargo.toml @@ -18,8 +18,8 @@ bp-runtime = { path = "../../primitives/runtime" } # Substrate Dependencies -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/modules/dispatch/Cargo.toml b/bridges/modules/dispatch/Cargo.toml index 90565ec9f66e..0fe53471998d 100644 --- a/bridges/modules/dispatch/Cargo.toml +++ b/bridges/modules/dispatch/Cargo.toml @@ -18,14 +18,14 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/modules/grandpa/Cargo.toml b/bridges/modules/grandpa/Cargo.toml index 05d5e5976d0c..483dfa2a699f 100644 --- a/bridges/modules/grandpa/Cargo.toml +++ b/bridges/modules/grandpa/Cargo.toml @@ -22,20 +22,20 @@ bp-header-chain = { path = "../../primitives/header-chain", default-features = f # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } # Optional Benchmarking Dependencies bp-test-utils = { path = "../../primitives/test-utils", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/modules/messages/Cargo.toml b/bridges/modules/messages/Cargo.toml index 437ebb127211..cbe9ff957063 100644 --- a/bridges/modules/messages/Cargo.toml +++ b/bridges/modules/messages/Cargo.toml @@ -22,16 +22,16 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/modules/shift-session-manager/Cargo.toml b/bridges/modules/shift-session-manager/Cargo.toml index be10b8df611b..217c18fc889a 100644 --- a/bridges/modules/shift-session-manager/Cargo.toml +++ b/bridges/modules/shift-session-manager/Cargo.toml @@ -12,15 +12,15 @@ scale-info = { version = "2.0.1", default-features = false, features = ["derive" # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/modules/token-swap/Cargo.toml b/bridges/modules/token-swap/Cargo.toml index b8f5e5254138..065dfced1566 100644 --- a/bridges/modules/token-swap/Cargo.toml +++ b/bridges/modules/token-swap/Cargo.toml @@ -23,16 +23,16 @@ pallet-bridge-messages = { path = "../messages", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/chain-kusama/Cargo.toml b/bridges/primitives/chain-kusama/Cargo.toml index a6ced6377a50..282de374c8e5 100644 --- a/bridges/primitives/chain-kusama/Cargo.toml +++ b/bridges/primitives/chain-kusama/Cargo.toml @@ -17,11 +17,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/chain-millau/Cargo.toml b/bridges/primitives/chain-millau/Cargo.toml index 68485e646e3c..79453e0b0a12 100644 --- a/bridges/primitives/chain-millau/Cargo.toml +++ b/bridges/primitives/chain-millau/Cargo.toml @@ -22,14 +22,14 @@ serde = { version = "1.0", optional = true, features = ["derive"] } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/chain-polkadot/Cargo.toml b/bridges/primitives/chain-polkadot/Cargo.toml index a02df4b1f732..dc095b626a8e 100644 --- a/bridges/primitives/chain-polkadot/Cargo.toml +++ b/bridges/primitives/chain-polkadot/Cargo.toml @@ -17,11 +17,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/chain-rialto-parachain/Cargo.toml b/bridges/primitives/chain-rialto-parachain/Cargo.toml index bcaa5382cc2d..4e165818e735 100644 --- a/bridges/primitives/chain-rialto-parachain/Cargo.toml +++ b/bridges/primitives/chain-rialto-parachain/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/chain-rialto/Cargo.toml b/bridges/primitives/chain-rialto/Cargo.toml index 9bc27c3a9af4..d661ded6cdfb 100644 --- a/bridges/primitives/chain-rialto/Cargo.toml +++ b/bridges/primitives/chain-rialto/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/chain-rococo/Cargo.toml b/bridges/primitives/chain-rococo/Cargo.toml index 5720273e59a0..35996ea175aa 100644 --- a/bridges/primitives/chain-rococo/Cargo.toml +++ b/bridges/primitives/chain-rococo/Cargo.toml @@ -16,11 +16,11 @@ bp-polkadot-core = { path = "../polkadot-core", default-features = false } bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/chain-westend/Cargo.toml b/bridges/primitives/chain-westend/Cargo.toml index 7060d18e3cc0..9b3444085996 100644 --- a/bridges/primitives/chain-westend/Cargo.toml +++ b/bridges/primitives/chain-westend/Cargo.toml @@ -19,11 +19,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/chain-wococo/Cargo.toml b/bridges/primitives/chain-wococo/Cargo.toml index d9502cd5deef..a090120bfed9 100644 --- a/bridges/primitives/chain-wococo/Cargo.toml +++ b/bridges/primitives/chain-wococo/Cargo.toml @@ -16,9 +16,9 @@ bp-rococo = { path = "../chain-rococo", default-features = false } bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/header-chain/Cargo.toml b/bridges/primitives/header-chain/Cargo.toml index 80d6b91a83b9..00beeda457fb 100644 --- a/bridges/primitives/header-chain/Cargo.toml +++ b/bridges/primitives/header-chain/Cargo.toml @@ -18,11 +18,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] assert_matches = "1.5" diff --git a/bridges/primitives/message-dispatch/Cargo.toml b/bridges/primitives/message-dispatch/Cargo.toml index 88445c218cbb..b3e788fc3903 100644 --- a/bridges/primitives/message-dispatch/Cargo.toml +++ b/bridges/primitives/message-dispatch/Cargo.toml @@ -13,8 +13,8 @@ scale-info = { version = "2.0.1", default-features = false, features = ["derive" # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/messages/Cargo.toml b/bridges/primitives/messages/Cargo.toml index 8c694e8c0238..bff0c1b4e911 100644 --- a/bridges/primitives/messages/Cargo.toml +++ b/bridges/primitives/messages/Cargo.toml @@ -19,10 +19,10 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] hex = "0.4" diff --git a/bridges/primitives/polkadot-core/Cargo.toml b/bridges/primitives/polkadot-core/Cargo.toml index d35e23b28af5..aaa53be33638 100644 --- a/bridges/primitives/polkadot-core/Cargo.toml +++ b/bridges/primitives/polkadot-core/Cargo.toml @@ -17,13 +17,13 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] hex = "0.4" diff --git a/bridges/primitives/runtime/Cargo.toml b/bridges/primitives/runtime/Cargo.toml index 869ddd387cd2..aa48e5ff4d69 100644 --- a/bridges/primitives/runtime/Cargo.toml +++ b/bridges/primitives/runtime/Cargo.toml @@ -14,13 +14,13 @@ scale-info = { version = "2.0.1", default-features = false, features = ["derive" # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] hex-literal = "0.3" diff --git a/bridges/primitives/test-utils/Cargo.toml b/bridges/primitives/test-utils/Cargo.toml index 44d8e39aacae..3ec7467f93fd 100644 --- a/bridges/primitives/test-utils/Cargo.toml +++ b/bridges/primitives/test-utils/Cargo.toml @@ -10,10 +10,10 @@ bp-header-chain = { path = "../header-chain", default-features = false } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } ed25519-dalek = { version = "1.0", default-features = false, features = ["u64_backend"] } finality-grandpa = { version = "0.15.0", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/bridges/primitives/token-swap/Cargo.toml b/bridges/primitives/token-swap/Cargo.toml index ba47a26c89bf..382be6f8fc5e 100644 --- a/bridges/primitives/token-swap/Cargo.toml +++ b/bridges/primitives/token-swap/Cargo.toml @@ -16,10 +16,10 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] hex = "0.4" diff --git a/bridges/relays/bin-substrate/Cargo.toml b/bridges/relays/bin-substrate/Cargo.toml index 00c8c92d3ce6..fb8ff467d047 100644 --- a/bridges/relays/bin-substrate/Cargo.toml +++ b/bridges/relays/bin-substrate/Cargo.toml @@ -59,12 +59,12 @@ substrate-relay-helper = { path = "../lib-substrate-relay" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot Dependencies @@ -77,6 +77,6 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", bp-test-utils = { path = "../../primitives/test-utils" } hex-literal = "0.3" pallet-bridge-grandpa = { path = "../../modules/grandpa" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } tempfile = "3.2" finality-grandpa = { version = "0.15.0" } diff --git a/bridges/relays/client-kusama/Cargo.toml b/bridges/relays/client-kusama/Cargo.toml index a2c39dfa4548..35c24c1089e6 100644 --- a/bridges/relays/client-kusama/Cargo.toml +++ b/bridges/relays/client-kusama/Cargo.toml @@ -25,6 +25,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-millau/Cargo.toml b/bridges/relays/client-millau/Cargo.toml index 3a79796c479e..989324334551 100644 --- a/bridges/relays/client-millau/Cargo.toml +++ b/bridges/relays/client-millau/Cargo.toml @@ -18,8 +18,8 @@ millau-runtime = { path = "../../bin/millau/runtime" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-polkadot/Cargo.toml b/bridges/relays/client-polkadot/Cargo.toml index d79dc3f86e45..96cfa2ce1bac 100644 --- a/bridges/relays/client-polkadot/Cargo.toml +++ b/bridges/relays/client-polkadot/Cargo.toml @@ -25,6 +25,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-rialto-parachain/Cargo.toml b/bridges/relays/client-rialto-parachain/Cargo.toml index c52c746fa16f..ebc285606431 100644 --- a/bridges/relays/client-rialto-parachain/Cargo.toml +++ b/bridges/relays/client-rialto-parachain/Cargo.toml @@ -16,6 +16,6 @@ rialto-parachain-runtime = { path = "../../bin/rialto-parachain/runtime" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-rialto/Cargo.toml b/bridges/relays/client-rialto/Cargo.toml index e463e97c368c..37c55dd5f153 100644 --- a/bridges/relays/client-rialto/Cargo.toml +++ b/bridges/relays/client-rialto/Cargo.toml @@ -18,8 +18,8 @@ rialto-runtime = { path = "../../bin/rialto/runtime" } # Substrate Dependencies -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-rococo/Cargo.toml b/bridges/relays/client-rococo/Cargo.toml index a0349e83d774..2b78684a853c 100644 --- a/bridges/relays/client-rococo/Cargo.toml +++ b/bridges/relays/client-rococo/Cargo.toml @@ -26,6 +26,6 @@ pallet-bridge-messages = { path = "../../modules/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-substrate/Cargo.toml b/bridges/relays/client-substrate/Cargo.toml index cebaf060fd0c..dad864965e29 100644 --- a/bridges/relays/client-substrate/Cargo.toml +++ b/bridges/relays/client-substrate/Cargo.toml @@ -28,21 +28,21 @@ relay-utils = { path = "../utils" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } #[dev-dependencies] futures = "0.3.7" diff --git a/bridges/relays/client-westend/Cargo.toml b/bridges/relays/client-westend/Cargo.toml index f334042b6589..d38aa1629945 100644 --- a/bridges/relays/client-westend/Cargo.toml +++ b/bridges/relays/client-westend/Cargo.toml @@ -16,6 +16,6 @@ bp-westend = { path = "../../primitives/chain-westend" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/client-wococo/Cargo.toml b/bridges/relays/client-wococo/Cargo.toml index 38ab5f495037..6845ac34c84a 100644 --- a/bridges/relays/client-wococo/Cargo.toml +++ b/bridges/relays/client-wococo/Cargo.toml @@ -24,6 +24,6 @@ pallet-bridge-dispatch = { path = "../../modules/dispatch" } pallet-bridge-messages = { path = "../../modules/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/lib-substrate-relay/Cargo.toml b/bridges/relays/lib-substrate-relay/Cargo.toml index 2febfc48875f..e2cabf52f449 100644 --- a/bridges/relays/lib-substrate-relay/Cargo.toml +++ b/bridges/relays/lib-substrate-relay/Cargo.toml @@ -34,19 +34,19 @@ bp-messages = { path = "../../primitives/messages" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] bp-millau = { path = "../../primitives/chain-millau" } bp-rialto = { path = "../../primitives/chain-rialto" } bp-rococo = { path = "../../primitives/chain-rococo" } bp-wococo = { path = "../../primitives/chain-wococo" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } relay-rococo-client = { path = "../client-rococo" } relay-wococo-client = { path = "../client-wococo" } rialto-runtime = { path = "../../bin/rialto/runtime" } diff --git a/bridges/relays/messages/Cargo.toml b/bridges/relays/messages/Cargo.toml index 1dea4aec61cb..b3357994b125 100644 --- a/bridges/relays/messages/Cargo.toml +++ b/bridges/relays/messages/Cargo.toml @@ -21,4 +21,4 @@ bp-runtime = { path = "../../primitives/runtime" } finality-relay = { path = "../finality" } relay-utils = { path = "../utils" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/relays/utils/Cargo.toml b/bridges/relays/utils/Cargo.toml index 2e899ec9551c..bb69849da26b 100644 --- a/bridges/relays/utils/Cargo.toml +++ b/bridges/relays/utils/Cargo.toml @@ -29,4 +29,4 @@ bp-runtime = { path = "../../primitives/runtime" } # Substrate dependencies -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ca9cdbbd37f6..f8f54349ad9c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -25,20 +25,20 @@ polkadot-client = { path = "../node/client", optional = true } polkadot-node-core-pvf = { path = "../node/core/pvf", optional = true } polkadot-performance-test = { path = "../node/test/performance-test", optional = true } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } -sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } polkadot-node-metrics = { path = "../node/metrics" } -sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } +sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } # this crate is used only to enable `trie-memory-tracker` feature # see https://github.com/paritytech/substrate/pull/6745 -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["wasmtime", "db", "cli", "full-node", "trie-memory-tracker", "polkadot-native"] diff --git a/core-primitives/Cargo.toml b/core-primitives/Cargo.toml index 18113395f34a..b68e6f57aa4b 100644 --- a/core-primitives/Cargo.toml +++ b/core-primitives/Cargo.toml @@ -5,9 +5,9 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } parity-scale-codec = { version = "3.1.2", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 04867d880b33..29c964097198 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -9,6 +9,6 @@ polkadot-primitives = { path = "../primitives" } polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../node/primitives" } novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["std", "derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" diff --git a/node/client/Cargo.toml b/node/client/Cargo.toml index 513c27ae9e40..d03701547a3e 100644 --- a/node/client/Cargo.toml +++ b/node/client/Cargo.toml @@ -5,37 +5,37 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot Runtimes polkadot-runtime = { path = "../../runtime/polkadot", optional = true } diff --git a/node/collation-generation/Cargo.toml b/node/collation-generation/Cargo.toml index 675f75be83a1..bee1a1c0c671 100644 --- a/node/collation-generation/Cargo.toml +++ b/node/collation-generation/Cargo.toml @@ -12,8 +12,8 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" parity-scale-codec = { version = "3.1.2", default-features = false, features = ["bit-vec", "derive"] } diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index 8caca708b56a..35501680c853 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -24,19 +24,19 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } -sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [dev-dependencies] parking_lot = "0.12.0" rand_core = "0.5.1" # should match schnorrkel -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" kvdb-memorydb = "0.11.0" diff --git a/node/core/av-store/Cargo.toml b/node/core/av-store/Cargo.toml index c8e7386989aa..9512b72d3fe9 100644 --- a/node/core/av-store/Cargo.toml +++ b/node/core/av-store/Cargo.toml @@ -26,9 +26,9 @@ env_logger = "0.9.0" assert_matches = "1.4.0" kvdb-memorydb = "0.11.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } parking_lot = "0.12.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/backing/Cargo.toml b/node/core/backing/Cargo.toml index 4fee25392e16..89aaf30ae91c 100644 --- a/node/core/backing/Cargo.toml +++ b/node/core/backing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] futures = "0.3.21" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } @@ -18,11 +18,11 @@ gum = { package = "tracing-gum", path = "../../gum" } thiserror = "1.0.30" [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/core/bitfield-signing/Cargo.toml b/node/core/bitfield-signing/Cargo.toml index 9530b3863eaa..8364a7a2a43f 100644 --- a/node/core/bitfield-signing/Cargo.toml +++ b/node/core/bitfield-signing/Cargo.toml @@ -10,7 +10,7 @@ gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } wasm-timer = "0.2.5" thiserror = "1.0.30" diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index 50962704b6c6..f82a22eb9d7a 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -9,7 +9,7 @@ async-trait = "0.1.53" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } -sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["bit-vec", "derive"] } polkadot-primitives = { path = "../../../primitives" } @@ -22,9 +22,9 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-core-pvf = { path = "../pvf" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/chain-api/Cargo.toml b/node/core/chain-api/Cargo.toml index f6b01ece067e..0d9ec8d3c2f2 100644 --- a/node/core/chain-api/Cargo.toml +++ b/node/core/chain-api/Cargo.toml @@ -7,12 +7,12 @@ edition = "2021" [dependencies] futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] futures = { version = "0.3.21", features = ["thread-pool"] } @@ -20,4 +20,4 @@ maplit = "1.0.2" parity-scale-codec = "3.1.2" polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/core/chain-selection/Cargo.toml b/node/core/chain-selection/Cargo.toml index 3c1ef63195f3..bc5f9e5eeb0b 100644 --- a/node/core/chain-selection/Cargo.toml +++ b/node/core/chain-selection/Cargo.toml @@ -19,7 +19,7 @@ parity-scale-codec = "3.1.2" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } parking_lot = "0.12.0" assert_matches = "1" kvdb-memorydb = "0.11.0" diff --git a/node/core/dispute-coordinator/Cargo.toml b/node/core/dispute-coordinator/Cargo.toml index 2f6d72cd6003..2d8ae793989d 100644 --- a/node/core/dispute-coordinator/Cargo.toml +++ b/node/core/dispute-coordinator/Cargo.toml @@ -18,15 +18,15 @@ polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] kvdb-memorydb = "0.11.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } assert_matches = "1.4.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } futures-timer = "3.0.2" diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index 77ac13309330..9d0dd40337d0 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -12,6 +12,6 @@ thiserror = "1.0.30" async-trait = "0.1.53" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-primitives = { path = "../../../primitives" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/core/provisioner/Cargo.toml b/node/core/provisioner/Cargo.toml index f0219b637715..bf22285cd6f3 100644 --- a/node/core/provisioner/Cargo.toml +++ b/node/core/provisioner/Cargo.toml @@ -17,7 +17,7 @@ futures-timer = "3.0.2" rand = "0.8.5" [dev-dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/pvf-checker/Cargo.toml b/node/core/pvf-checker/Cargo.toml index 37960a9400f3..677c7f1e4dee 100644 --- a/node/core/pvf-checker/Cargo.toml +++ b/node/core/pvf-checker/Cargo.toml @@ -15,14 +15,14 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-overseer = { path = "../../overseer" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers"} test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" diff --git a/node/core/pvf/Cargo.toml b/node/core/pvf/Cargo.toml index ac09c6dec2fe..2197ea0e073a 100644 --- a/node/core/pvf/Cargo.toml +++ b/node/core/pvf/Cargo.toml @@ -23,15 +23,15 @@ parity-scale-codec = { version = "3.1.2", default-features = false, features = [ polkadot-parachain = { path = "../../../parachain" } polkadot-core-primitives = { path = "../../../core-primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util"} -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] adder = { package = "test-parachain-adder", path = "../../../parachain/test-parachains/adder" } diff --git a/node/core/runtime-api/Cargo.toml b/node/core/runtime-api/Cargo.toml index f11ab1d7b5f2..da036d602725 100644 --- a/node/core/runtime-api/Cargo.toml +++ b/node/core/runtime-api/Cargo.toml @@ -10,18 +10,18 @@ gum = { package = "tracing-gum", path = "../../gum" } memory-lru = "0.1.0" parity-util-mem = { version = "0.11.0", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } polkadot-node-primitives = { path = "../../primitives" } diff --git a/node/jaeger/Cargo.toml b/node/jaeger/Cargo.toml index e38316067e56..1247f0ea076e 100644 --- a/node/jaeger/Cargo.toml +++ b/node/jaeger/Cargo.toml @@ -12,8 +12,8 @@ lazy_static = "1.4" parking_lot = "0.12.0" polkadot-primitives = { path = "../../primitives" } polkadot-node-primitives = { path = "../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" log = "0.4.16" parity-scale-codec = { version = "3.1.2", default-features = false } diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index 38f14d4e3a88..74a5c3a7627a 100644 --- a/node/malus/Cargo.toml +++ b/node/malus/Cargo.toml @@ -27,8 +27,8 @@ parity-util-mem = { version = "0.11.0", default-features = false, features = ["j color-eyre = { version = "0.6.1", default-features = false } assert_matches = "1.5" async-trait = "0.1.53" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } clap = { version = "3.1", features = ["derive"] } futures = "0.3.21" futures-timer = "3.0.2" @@ -40,5 +40,5 @@ default = [] [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } diff --git a/node/metrics/Cargo.toml b/node/metrics/Cargo.toml index d65ce15f271a..486c98118acc 100644 --- a/node/metrics/Cargo.toml +++ b/node/metrics/Cargo.toml @@ -13,11 +13,11 @@ gum = { package = "tracing-gum", path = "../gum" } metered-channel = { path = "../metered-channel" } # Both `sc-service` and `sc-cli` are required by runtime metrics `logger_hook()`. -sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } codec = { package = "parity-scale-codec", version = "3.0.0" } primitives = { package = "polkadot-primitives", path = "../../primitives/" } bs58 = { version = "0.4.0", features = ["alloc"] } @@ -30,10 +30,10 @@ tempfile = "3.2.0" hyper = { version = "0.14.18", default-features = false, features = ["http1", "tcp"] } tokio = "1.17.0" polkadot-test-service = { path = "../test/service", features=["runtime-metrics"]} -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } prometheus-parse = {version = "0.2.2"} [features] diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index 4f089d0e67b4..597512393e25 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -16,8 +16,8 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "dp-jsonrpsee-integration-2" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "master" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index bdfc611e8b04..928f47f762eb 100644 --- a/node/network/availability-distribution/Cargo.toml +++ b/node/network/availability-distribution/Cargo.toml @@ -14,8 +14,8 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" rand = "0.8.5" derive_more = "0.99.17" @@ -24,10 +24,10 @@ fatality = "0.0.6" [dev-dependencies] polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" assert_matches = "1.4.0" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/availability-recovery/Cargo.toml b/node/network/availability-recovery/Cargo.toml index 7fb6a95bcaa1..217255be27d5 100644 --- a/node/network/availability-recovery/Cargo.toml +++ b/node/network/availability-recovery/Cargo.toml @@ -19,7 +19,7 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-network-protocol = { path = "../../network/protocol" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] assert_matches = "1.4.0" @@ -27,10 +27,10 @@ env_logger = "0.9.0" futures-timer = "3.0.2" log = "0.4.16" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-subsystem-test-helpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/bitfield-distribution/Cargo.toml b/node/network/bitfield-distribution/Cargo.toml index dc7cb6200c39..6418b27718e7 100644 --- a/node/network/bitfield-distribution/Cargo.toml +++ b/node/network/bitfield-distribution/Cargo.toml @@ -15,10 +15,10 @@ polkadot-node-network-protocol = { path = "../../network/protocol" } [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } maplit = "1.0.2" log = "0.4.16" env_logger = "0.9.0" diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index a88ad9ae0bbb..919f5271cd12 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -10,8 +10,8 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-overseer = { path = "../../overseer" } polkadot-node-network-protocol = { path = "../protocol" } @@ -21,7 +21,7 @@ parking_lot = "0.12.0" [dev-dependencies] assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index 42d0ecf723ec..fd84e74861b7 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -10,9 +10,9 @@ futures = "0.3.21" futures-timer = "3" gum = { package = "tracing-gum", path = "../../gum" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-network-protocol = { path = "../../network/protocol" } @@ -27,9 +27,9 @@ log = "0.4.16" env_logger = "0.9.0" assert_matches = "1.4.0" -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } parity-scale-codec = { version = "3.1.2", features = ["std"] } polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index e3ad01150497..6c7c46d1f146 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -15,9 +15,9 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" fatality = "0.0.6" lru = "0.7.5" @@ -25,9 +25,9 @@ lru = "0.7.5" [dev-dependencies] async-trait = "0.1.53" polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" assert_matches = "1.4.0" lazy_static = "1.4.0" diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index 15eded335fdc..54984e748fac 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -5,10 +5,10 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-network-protocol = { path = "../protocol" } polkadot-node-subsystem = { path = "../../subsystem" } @@ -22,10 +22,10 @@ rand_chacha = { version = "0.3.1", default-features = false } gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index 9ca2e7420d30..8c9090399302 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -11,8 +11,8 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } strum = { version = "0.24", features = ["derive"] } futures = "0.3.21" thiserror = "1.0.30" diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index b3fd19a55166..6ec974902258 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -9,8 +9,8 @@ edition = "2021" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } @@ -24,13 +24,13 @@ fatality = "0.0.6" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index 118219ed36a1..70b8b33b080d 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.21" futures-timer = "3.0.2" parking_lot = "0.12.0" @@ -22,7 +22,7 @@ parity-util-mem = { version = "0.11.0", default-features = false } [dev-dependencies] metered-channel = { path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } femme = "2.2.0" assert_matches = "1.4.0" diff --git a/node/primitives/Cargo.toml b/node/primitives/Cargo.toml index fc1acc640355..909bc8a85c33 100644 --- a/node/primitives/Cargo.toml +++ b/node/primitives/Cargo.toml @@ -10,12 +10,12 @@ bounded-vec = "0.5" futures = "0.3.21" polkadot-primitives = { path = "../../primitives" } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-parachain = { path = "../../parachain", default-features = false } schnorrkel = "0.9.1" thiserror = "1.0.30" diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 3427dabcb196..446b47f250df 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -6,58 +6,58 @@ edition = "2021" [dependencies] # Substrate Client -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -service = { package = "sc-service", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +service = { package = "sc-service", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" } # Substrate Primitives -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Substrate Pallets -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } # Substrate Other -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" } # External Crates futures = "0.3.21" diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index c73006caa7eb..17bad3f4b49d 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -12,11 +12,11 @@ parking_lot = "0.12.0" polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] polkadot-overseer = { path = "../overseer" } diff --git a/node/subsystem-types/Cargo.toml b/node/subsystem-types/Cargo.toml index 928e6b05dfbc..9c58a6a3dd1a 100644 --- a/node/subsystem-types/Cargo.toml +++ b/node/subsystem-types/Cargo.toml @@ -14,7 +14,7 @@ polkadot-node-network-protocol = { path = "../network/protocol" } polkadot-statement-table = { path = "../../statement-table" } polkadot-node-jaeger = { path = "../jaeger" } polkadot-overseer-gen = { path = "../overseer/overseer-gen" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } smallvec = "1.8.0" -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index f211236321fa..4cb56780617a 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -28,9 +28,9 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-overseer = { path = "../overseer" } metered-channel = { path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } kvdb = "0.11.0" parity-util-mem = { version = "0.11", default-features = false } diff --git a/node/test/client/Cargo.toml b/node/test/client/Cargo.toml index a9c74234f6a6..7636e907664f 100644 --- a/node/test/client/Cargo.toml +++ b/node/test/client/Cargo.toml @@ -14,20 +14,20 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } # Substrate dependencies -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.21" diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index b965c3c2ed63..5049ff76015d 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -27,40 +27,40 @@ test-runtime-constants = { path = "../../../runtime/test-runtime/constants" } polkadot-runtime-parachains = { path = "../../../runtime/parachains" } # Substrate dependencies -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "wasmtime" ] , branch = "dp-jsonrpsee-integration-2" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "wasmtime" ] , branch = "master" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } serde_json = "1.0.79" -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } tokio = { version = "1.17.0", features = ["macros"] } [features] diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 0aba18f8bbc2..94e2d34a5006 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -12,10 +12,10 @@ edition = "2021" parity-scale-codec = { version = "3.1.2", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } polkadot-core-primitives = { path = "../core-primitives", default-features = false } derive_more = "0.99.11" diff --git a/parachain/test-parachains/Cargo.toml b/parachain/test-parachains/Cargo.toml index 12c5a9c1c9fa..f9602b847281 100644 --- a/parachain/test-parachains/Cargo.toml +++ b/parachain/test-parachains/Cargo.toml @@ -13,7 +13,7 @@ adder = { package = "test-parachain-adder", path = "adder" } halt = { package = "test-parachain-halt", path = "halt" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/parachain/test-parachains/adder/Cargo.toml b/parachain/test-parachains/adder/Cargo.toml index b58d7d84c740..687675a6183b 100644 --- a/parachain/test-parachains/adder/Cargo.toml +++ b/parachain/test-parachains/adder/Cargo.toml @@ -9,15 +9,15 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "master" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/adder/collator/Cargo.toml b/parachain/test-parachains/adder/collator/Cargo.toml index 7752f3e1e8dd..7f3acd6c3868 100644 --- a/parachain/test-parachains/adder/collator/Cargo.toml +++ b/parachain/test-parachains/adder/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } tokio = { version = "1.17.0", features = ["macros"] } diff --git a/parachain/test-parachains/halt/Cargo.toml b/parachain/test-parachains/halt/Cargo.toml index 6965cf31c34a..b5899f4d10c5 100644 --- a/parachain/test-parachains/halt/Cargo.toml +++ b/parachain/test-parachains/halt/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" [dependencies] [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/undying/Cargo.toml b/parachain/test-parachains/undying/Cargo.toml index 5db551f259fe..2f3527952856 100644 --- a/parachain/test-parachains/undying/Cargo.toml +++ b/parachain/test-parachains/undying/Cargo.toml @@ -9,16 +9,16 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } log = { version = "0.4.16", default-features = false } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "master" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/undying/collator/Cargo.toml b/parachain/test-parachains/undying/collator/Cargo.toml index 762abfa1d1cb..f4a3ab745cc0 100644 --- a/parachain/test-parachains/undying/collator/Cargo.toml +++ b/parachain/test-parachains/undying/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } tokio = { version = "1.15", features = ["macros"] } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index c5b91f20f2ec..60901bcbdb7d 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -8,24 +8,24 @@ edition = "2021" serde = { version = "1.0.136", optional = true, features = ["derive"] } scale-info = { version = "2.1.1", default-features = false, features = ["bit-vec", "derive"] } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } polkadot-parachain = { path = "../parachain", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } hex-literal = "0.3.4" parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/primitives/test-helpers/Cargo.toml b/primitives/test-helpers/Cargo.toml index 95feab5419a0..2902feae60eb 100644 --- a/primitives/test-helpers/Cargo.toml +++ b/primitives/test-helpers/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../" } rand = "0.8.5" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index d7ad883ddc28..a846432d3b66 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -7,26 +7,26 @@ edition = "2021" [dependencies] jsonrpsee = { version = "0.10.1", features = ["server"] } polkadot-primitives = { path = "../primitives" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 93bfdb95e7fb..884c449fc14b 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -15,34 +15,34 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } libsecp256k1 = { version = "0.7.0", default-features = false } @@ -53,10 +53,10 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } trie-db = "0.23.1" serde_json = "1.0.79" libsecp256k1 = "0.7.0" diff --git a/runtime/common/slot_range_helper/Cargo.toml b/runtime/common/slot_range_helper/Cargo.toml index dae02b125628..b8aa3b2e162c 100644 --- a/runtime/common/slot_range_helper/Cargo.toml +++ b/runtime/common/slot_range_helper/Cargo.toml @@ -8,8 +8,8 @@ edition = "2021" paste = "1.0" enumn = "0.1.3" parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 8c1f2c62862d..33fa5e319606 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -16,75 +16,75 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } kusama-runtime-constants = { package = "kusama-runtime-constants", path = "./constants", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-gilt = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-gilt = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -98,13 +98,13 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } separator = "0.4.1" serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/kusama/constants/Cargo.toml b/runtime/kusama/constants/Cargo.toml index 58ee9820cbe9..34b210dd0484 100644 --- a/runtime/kusama/constants/Cargo.toml +++ b/runtime/kusama/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/runtime/metrics/Cargo.toml b/runtime/metrics/Cargo.toml index d47fab929c3f..2803d58587a2 100644 --- a/runtime/metrics/Cargo.toml +++ b/runtime/metrics/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } -sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } parity-scale-codec = { version = "3.1.2", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index 3a1aa78bc237..8a58446e77f7 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -14,29 +14,29 @@ serde = { version = "1.0.136", features = [ "derive" ], optional = true } derive_more = "0.99.17" bitflags = "1.3.2" -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "dp-jsonrpsee-integration-2" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } xcm = { package = "xcm", path = "../../xcm", default-features = false } xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false } @@ -50,11 +50,11 @@ polkadot-runtime-metrics = { path = "../metrics", default-features = false} [dev-dependencies] futures = "0.3.21" hex-literal = "0.3.4" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers"} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } thousands = "0.2.0" assert_matches = "1" diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index 48c9996ae842..f1ed11163855 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -16,70 +16,70 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } polkadot-runtime-constants = { package = "polkadot-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -93,14 +93,14 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } trie-db = "0.23.1" serde_json = "1.0.79" separator = "0.4.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/polkadot/constants/Cargo.toml b/runtime/polkadot/constants/Cargo.toml index dfa4951a3464..cf62140f52cd 100644 --- a/runtime/polkadot/constants/Cargo.toml +++ b/runtime/polkadot/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index 0c9f7776ec90..4edb11da8f0f 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -13,52 +13,52 @@ serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" log = { version = "0.4.16", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } rococo-runtime-constants = { package = "rococo-runtime-constants", path = "./constants", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -82,12 +82,12 @@ pallet-bridge-grandpa = { path = "../../bridges/modules/grandpa", default-featur pallet-bridge-messages = { path = "../../bridges/modules/messages", default-features = false } # Benchmarking Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } hex-literal = { version = "0.3.4", optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/rococo/constants/Cargo.toml b/runtime/rococo/constants/Cargo.toml index f6a3843b2db2..816c978b7f0d 100644 --- a/runtime/rococo/constants/Cargo.toml +++ b/runtime/rococo/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index 638c12b2a0aa..0217b7c0a85b 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -15,45 +15,45 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } test-runtime-constants = { package = "test-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } @@ -67,12 +67,12 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/test-runtime/constants/Cargo.toml b/runtime/test-runtime/constants/Cargo.toml index 58debe8c414e..6d7af71ec47f 100644 --- a/runtime/test-runtime/constants/Cargo.toml +++ b/runtime/test-runtime/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index 16565181236e..6ecc48879903 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -15,71 +15,71 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } westend-runtime-constants = { package = "westend-runtime-constants", path = "./constants", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -94,12 +94,12 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = "2.0.2" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } serde_json = "1.0.79" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/westend/constants/Cargo.toml b/runtime/westend/constants/Cargo.toml index 3cf2bce01a2a..d7b9bb39560a 100644 --- a/runtime/westend/constants/Cargo.toml +++ b/runtime/westend/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } [features] default = ["std"] diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index 9d50729cad04..4d0309c61ff8 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/utils/generate-bags/Cargo.toml b/utils/generate-bags/Cargo.toml index d603c522a23a..7859e94ca61f 100644 --- a/utils/generate-bags/Cargo.toml +++ b/utils/generate-bags/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" [dependencies] clap = { version = "3.1", features = ["derive"] } -generate-bags = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +generate-bags = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } westend-runtime = { path = "../../runtime/westend" } kusama-runtime = { path = "../../runtime/kusama" } diff --git a/utils/remote-ext-tests/bags-list/Cargo.toml b/utils/remote-ext-tests/bags-list/Cargo.toml index b238e802abf5..80b293352131 100644 --- a/utils/remote-ext-tests/bags-list/Cargo.toml +++ b/utils/remote-ext-tests/bags-list/Cargo.toml @@ -12,10 +12,10 @@ polkadot-runtime-constants = { path = "../../../runtime/polkadot/constants" } kusama-runtime-constants = { path = "../../../runtime/kusama/constants" } westend-runtime-constants = { path = "../../../runtime/westend/constants" } -pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } clap = { version = "3.1", features = ["derive"] } log = "0.4.16" diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index ccb7422ef00d..e8e5974178a8 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -16,22 +16,22 @@ serde_json = "1.0" thiserror = "1.0.30" tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread", "sync"] } -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } - -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } - -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } + +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } + +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } core-primitives = { package = "polkadot-core-primitives", path = "../../core-primitives" } diff --git a/xcm/pallet-xcm-benchmarks/Cargo.toml b/xcm/pallet-xcm-benchmarks/Cargo.toml index c4ad34e4bbe1..617462de51de 100644 --- a/xcm/pallet-xcm-benchmarks/Cargo.toml +++ b/xcm/pallet-xcm-benchmarks/Cargo.toml @@ -10,21 +10,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } -frame-support = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } -frame-system = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } -sp-std = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } +frame-support = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "master" } +frame-system = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "master" } +sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "master" } +sp-std = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "master" } xcm-executor = { path = "../xcm-executor", default-features = false, features = ["runtime-benchmarks"] } -frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "master" } xcm = { path = "..", default-features = false, features = ["runtime-benchmarks"] } log = "0.4.16" [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } -pallet-assets = { git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } -sp-tracing = { git = "https://github.com/paritytech/substrate" , branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate" , branch = "master" } +pallet-assets = { git = "https://github.com/paritytech/substrate" , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate" , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate" , branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate" , branch = "master" } xcm-builder = { path = "../xcm-builder" } xcm = { path = ".." } # temp diff --git a/xcm/pallet-xcm/Cargo.toml b/xcm/pallet-xcm/Cargo.toml index 43e39b1da6ae..0621821888f6 100644 --- a/xcm/pallet-xcm/Cargo.toml +++ b/xcm/pallet-xcm/Cargo.toml @@ -10,19 +10,19 @@ scale-info = { version = "2.1.1", default-features = false, features = ["derive" serde = { version = "1.0.136", optional = true, features = ["derive"] } log = { version = "0.4.16", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } xcm-builder = { path = "../xcm-builder" } polkadot-parachain = { path = "../../parachain" } diff --git a/xcm/xcm-builder/Cargo.toml b/xcm/xcm-builder/Cargo.toml index d5598fad4bb3..531ce46e0700 100644 --- a/xcm/xcm-builder/Cargo.toml +++ b/xcm/xcm-builder/Cargo.toml @@ -10,21 +10,21 @@ parity-scale-codec = { version = "3.1.2", default-features = false, features = [ scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } log = { version = "0.4.16", default-features = false } # Polkadot dependencies polkadot-parachain = { path = "../../parachain", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-xcm = { path = "../pallet-xcm" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } [features] diff --git a/xcm/xcm-executor/Cargo.toml b/xcm/xcm-executor/Cargo.toml index f22eb5de4434..64fbebd6ae60 100644 --- a/xcm/xcm-executor/Cargo.toml +++ b/xcm/xcm-executor/Cargo.toml @@ -9,14 +9,14 @@ version = "0.9.19" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } log = { version = "0.4.16", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "dp-jsonrpsee-integration-2" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } [features] default = ["std"] diff --git a/xcm/xcm-executor/integration-tests/Cargo.toml b/xcm/xcm-executor/integration-tests/Cargo.toml index 3a8e7e1fc79f..a4e7a5f601aa 100644 --- a/xcm/xcm-executor/integration-tests/Cargo.toml +++ b/xcm/xcm-executor/integration-tests/Cargo.toml @@ -6,20 +6,20 @@ description = "Integration tests for the XCM Executor" version = "0.9.19" [dependencies] -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.21" pallet-xcm = { path = "../../pallet-xcm" } polkadot-test-client = { path = "../../../node/test/client" } polkadot-test-runtime = { path = "../../../runtime/test-runtime" } polkadot-test-service = { path = "../../../node/test/service" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "dp-jsonrpsee-integration-2" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../..", default-features = false } xcm-executor = { path = ".." } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/xcm/xcm-simulator/Cargo.toml b/xcm/xcm-simulator/Cargo.toml index 9f753e2429f8..6c58b447bf15 100644 --- a/xcm/xcm-simulator/Cargo.toml +++ b/xcm/xcm-simulator/Cargo.toml @@ -9,9 +9,9 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } paste = "1.0.7" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../" } xcm-executor = { path = "../xcm-executor" } diff --git a/xcm/xcm-simulator/example/Cargo.toml b/xcm/xcm-simulator/example/Cargo.toml index 587e9b8adb5a..8a36fdfdcf78 100644 --- a/xcm/xcm-simulator/example/Cargo.toml +++ b/xcm/xcm-simulator/example/Cargo.toml @@ -9,13 +9,13 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } scale-info = { version = "2.1.1", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../../" } xcm-simulator = { path = "../" } diff --git a/xcm/xcm-simulator/fuzzer/Cargo.toml b/xcm/xcm-simulator/fuzzer/Cargo.toml index 7fb2a11aa945..46d825bb5927 100644 --- a/xcm/xcm-simulator/fuzzer/Cargo.toml +++ b/xcm/xcm-simulator/fuzzer/Cargo.toml @@ -10,13 +10,13 @@ codec = { package = "parity-scale-codec", version = "3.0.0" } honggfuzz = "0.5.54" scale-info = { version = "2.1.1", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "dp-jsonrpsee-integration-2" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../../" } xcm-simulator = { path = "../" } From 9f5db3d822cf0ac5cdb3f067a48ec9bf469fae53 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 21 Apr 2022 11:07:25 +0200 Subject: [PATCH 11/23] revert changes in Cargo.toml --- Cargo.lock | 968 ++++++++++++------ Cargo.toml | 2 + bridges/bin/millau/node/Cargo.toml | 2 +- bridges/bin/millau/runtime/Cargo.toml | 64 +- bridges/bin/rialto-parachain/node/Cargo.toml | 4 +- .../bin/rialto-parachain/runtime/Cargo.toml | 48 +- bridges/bin/rialto/node/Cargo.toml | 4 +- bridges/bin/rialto/runtime/Cargo.toml | 68 +- bridges/bin/runtime-common/Cargo.toml | 22 +- bridges/modules/dispatch/Cargo.toml | 10 +- bridges/modules/grandpa/Cargo.toml | 14 +- bridges/modules/messages/Cargo.toml | 12 +- .../modules/shift-session-manager/Cargo.toml | 10 +- bridges/modules/token-swap/Cargo.toml | 14 +- bridges/primitives/chain-kusama/Cargo.toml | 10 +- bridges/primitives/chain-millau/Cargo.toml | 16 +- bridges/primitives/chain-polkadot/Cargo.toml | 10 +- .../chain-rialto-parachain/Cargo.toml | 12 +- bridges/primitives/chain-rialto/Cargo.toml | 12 +- bridges/primitives/chain-rococo/Cargo.toml | 10 +- bridges/primitives/chain-westend/Cargo.toml | 10 +- bridges/primitives/chain-wococo/Cargo.toml | 6 +- bridges/primitives/header-chain/Cargo.toml | 10 +- .../primitives/message-dispatch/Cargo.toml | 4 +- bridges/primitives/messages/Cargo.toml | 8 +- bridges/primitives/polkadot-core/Cargo.toml | 14 +- bridges/primitives/runtime/Cargo.toml | 14 +- bridges/primitives/test-utils/Cargo.toml | 8 +- bridges/primitives/token-swap/Cargo.toml | 8 +- cli/Cargo.toml | 12 +- core-primitives/Cargo.toml | 6 +- node/client/Cargo.toml | 4 +- node/core/approval-voting/Cargo.toml | 10 +- node/network/approval-distribution/Cargo.toml | 2 +- .../availability-distribution/Cargo.toml | 4 +- node/network/collator-protocol/Cargo.toml | 2 +- .../network/statement-distribution/Cargo.toml | 2 +- node/service/Cargo.toml | 2 +- node/test/service/Cargo.toml | 4 +- parachain/Cargo.toml | 8 +- parachain/test-parachains/adder/Cargo.toml | 4 +- parachain/test-parachains/undying/Cargo.toml | 4 +- primitives/Cargo.toml | 30 +- primitives/test-helpers/Cargo.toml | 2 +- runtime/common/Cargo.toml | 52 +- runtime/common/slot_range_helper/Cargo.toml | 4 +- runtime/kusama/Cargo.toml | 128 +-- runtime/kusama/constants/Cargo.toml | 4 +- runtime/metrics/Cargo.toml | 4 +- runtime/parachains/Cargo.toml | 46 +- runtime/polkadot/Cargo.toml | 118 +-- runtime/polkadot/constants/Cargo.toml | 4 +- runtime/rococo/Cargo.toml | 90 +- runtime/rococo/constants/Cargo.toml | 4 +- runtime/test-runtime/Cargo.toml | 72 +- runtime/test-runtime/constants/Cargo.toml | 4 +- runtime/westend/Cargo.toml | 118 +-- runtime/westend/constants/Cargo.toml | 4 +- xcm/pallet-xcm-benchmarks/Cargo.toml | 20 +- xcm/pallet-xcm/Cargo.toml | 2 +- xcm/xcm-builder/Cargo.toml | 14 +- xcm/xcm-executor/Cargo.toml | 14 +- xcm/xcm-executor/integration-tests/Cargo.toml | 4 +- 63 files changed, 1274 insertions(+), 922 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1cee79fc33b8..5bd93fafb570 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,7 +94,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" dependencies = [ - "winapi", + "winapi 0.3.9", ] [[package]] @@ -238,7 +238,7 @@ dependencies = [ "slab", "socket2 0.4.4", "waker-fn", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -273,7 +273,7 @@ dependencies = [ "libc", "once_cell", "signal-hook", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -341,7 +341,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb4401f0a3622dad2e0763fa79e0eb328bc70fb7dccfdd645341f00d671247d6" dependencies = [ - "bytes", + "bytes 1.1.0", "futures-sink", "futures-util", "memchr", @@ -354,7 +354,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0de5164e5edbf51c45fb8c2d9664ae1c095cce1b265ecf7569093c0d66ef690" dependencies = [ - "bytes", + "bytes 1.1.0", "futures-sink", "futures-util", "memchr", @@ -384,7 +384,7 @@ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ "hermit-abi", "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -444,7 +444,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "beefy-primitives", "fnv", @@ -478,12 +478,15 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "beefy-gadget", "beefy-primitives", "futures 0.3.21", - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-core-client", + "jsonrpc-derive", + "jsonrpc-pubsub", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -498,12 +501,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "scale-info", @@ -924,6 +927,16 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" +[[package]] +name = "bytes" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" +dependencies = [ + "byteorder", + "iovec", +] + [[package]] name = "bytes" version = "1.1.0" @@ -1049,7 +1062,7 @@ dependencies = [ "num-integer", "num-traits", "time", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -1649,7 +1662,7 @@ checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901" dependencies = [ "libc", "redox_users 0.3.5", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -1660,7 +1673,7 @@ checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780" dependencies = [ "libc", "redox_users 0.4.0", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -1671,7 +1684,7 @@ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" dependencies = [ "libc", "redox_users 0.4.0", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -1910,7 +1923,7 @@ checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" dependencies = [ "errno-dragonfly", "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -2012,7 +2025,7 @@ checksum = "f5aa1e3ae159e592ad222dc90c5acbad632b527779ba88486abe92782ab268bd" dependencies = [ "expander 0.0.4", "indexmap", - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -2089,7 +2102,7 @@ dependencies = [ "cc", "lazy_static", "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -2147,7 +2160,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", ] @@ -2159,13 +2172,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" dependencies = [ "matches", - "percent-encoding", + "percent-encoding 2.1.0", ] [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -2187,7 +2200,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "Inflector", "chrono", @@ -2235,9 +2248,9 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -2246,7 +2259,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2262,7 +2275,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -2290,7 +2303,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "bitflags", "frame-metadata", @@ -2320,7 +2333,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2332,10 +2345,10 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support-procedural-tools-derive", - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -2344,7 +2357,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "proc-macro2", "quote", @@ -2354,7 +2367,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2377,7 +2390,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -2388,7 +2401,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "log", @@ -2405,7 +2418,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -2420,7 +2433,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "sp-api", @@ -2429,7 +2442,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "sp-api", @@ -2452,7 +2465,7 @@ dependencies = [ "lazy_static", "libc", "libloading 0.5.2", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -2462,7 +2475,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" dependencies = [ "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -2471,6 +2484,22 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394" +[[package]] +name = "fuchsia-zircon" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" +dependencies = [ + "bitflags", + "fuchsia-zircon-sys", +] + +[[package]] +name = "fuchsia-zircon-sys" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" + [[package]] name = "funty" version = "2.0.0" @@ -2593,6 +2622,7 @@ version = "0.3.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" dependencies = [ + "futures 0.1.31", "futures-channel", "futures-core", "futures-io", @@ -2608,7 +2638,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "chrono", "frame-election-provider-support", @@ -2694,7 +2724,7 @@ dependencies = [ "libc", "libgit2-sys", "log", - "url", + "url 2.2.2", ] [[package]] @@ -2746,7 +2776,7 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9f1f717ddc7b2ba36df7e871fd88db79326551d3d6f1fc406fbfd28b582ff8e" dependencies = [ - "bytes", + "bytes 1.1.0", "fnv", "futures-core", "futures-sink", @@ -2898,7 +2928,7 @@ checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" dependencies = [ "libc", "match_cfg", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -2907,7 +2937,7 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b" dependencies = [ - "bytes", + "bytes 1.1.0", "fnv", "itoa 0.4.8", ] @@ -2918,7 +2948,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6" dependencies = [ - "bytes", + "bytes 1.1.0", "http", "pin-project-lite 0.2.7", ] @@ -2956,7 +2986,7 @@ version = "0.14.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2" dependencies = [ - "bytes", + "bytes 1.1.0", "futures-channel", "futures-core", "futures-util", @@ -2997,13 +3027,24 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ - "bytes", + "bytes 1.1.0", "hyper", "native-tls", "tokio", "tokio-native-tls", ] +[[package]] +name = "idna" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" +dependencies = [ + "matches", + "unicode-bidi", + "unicode-normalization", +] + [[package]] name = "idna" version = "0.2.3" @@ -3023,7 +3064,7 @@ checksum = "2273e421f7c4f0fc99e1934fe4776f59d8df2972f4199d703fc0da9f2a9f73de" dependencies = [ "if-addrs-sys", "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -3049,7 +3090,7 @@ dependencies = [ "ipnet", "libc", "log", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -3128,6 +3169,15 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec58677acfea8a15352d42fc87d11d63596ade9239e0a7c9352914417515dbe6" +[[package]] +name = "iovec" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" +dependencies = [ + "libc", +] + [[package]] name = "ip_network" version = "0.4.1" @@ -3142,7 +3192,7 @@ checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7" dependencies = [ "socket2 0.3.19", "widestring", - "winapi", + "winapi 0.3.9", "winreg 0.6.2", ] @@ -3191,11 +3241,142 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "jsonrpc-client-transports" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2b99d4207e2a04fb4581746903c2bb7eb376f88de9c699d0f3e10feeac0cd3a" +dependencies = [ + "derive_more", + "futures 0.3.21", + "jsonrpc-core", + "jsonrpc-pubsub", + "log", + "serde", + "serde_json", + "url 1.7.2", +] + +[[package]] +name = "jsonrpc-core" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb" +dependencies = [ + "futures 0.3.21", + "futures-executor", + "futures-util", + "log", + "serde", + "serde_derive", + "serde_json", +] + +[[package]] +name = "jsonrpc-core-client" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b51da17abecbdab3e3d4f26b01c5ec075e88d3abe3ab3b05dc9aa69392764ec0" +dependencies = [ + "futures 0.3.21", + "jsonrpc-client-transports", +] + +[[package]] +name = "jsonrpc-derive" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b939a78fa820cdfcb7ee7484466746a7377760970f6f9c6fe19f9edcc8a38d2" +dependencies = [ + "proc-macro-crate 0.1.5", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "jsonrpc-http-server" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1dea6e07251d9ce6a552abfb5d7ad6bc290a4596c8dcc3d795fae2bbdc1f3ff" +dependencies = [ + "futures 0.3.21", + "hyper", + "jsonrpc-core", + "jsonrpc-server-utils", + "log", + "net2", + "parking_lot 0.11.2", + "unicase", +] + +[[package]] +name = "jsonrpc-ipc-server" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "382bb0206323ca7cda3dcd7e245cea86d37d02457a02a975e3378fb149a48845" +dependencies = [ + "futures 0.3.21", + "jsonrpc-core", + "jsonrpc-server-utils", + "log", + "parity-tokio-ipc", + "parking_lot 0.11.2", + "tower-service", +] + +[[package]] +name = "jsonrpc-pubsub" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240f87695e6c6f62fb37f05c02c04953cf68d6408b8c1c89de85c7a0125b1011" +dependencies = [ + "futures 0.3.21", + "jsonrpc-core", + "lazy_static", + "log", + "parking_lot 0.11.2", + "rand 0.7.3", + "serde", +] + +[[package]] +name = "jsonrpc-server-utils" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa4fdea130485b572c39a460d50888beb00afb3e35de23ccd7fad8ff19f0e0d4" +dependencies = [ + "bytes 1.1.0", + "futures 0.3.21", + "globset", + "jsonrpc-core", + "lazy_static", + "log", + "tokio", + "tokio-stream", + "tokio-util 0.6.9", + "unicase", +] + +[[package]] +name = "jsonrpc-ws-server" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f892c7d766369475ab7b0669f417906302d7c0fb521285c0a0c92e52e7c8e946" +dependencies = [ + "futures 0.3.21", + "jsonrpc-core", + "jsonrpc-server-utils", + "log", + "parity-ws", + "parking_lot 0.11.2", + "slab", +] + [[package]] name = "jsonrpsee" version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91dc760c341fa81173f9a434931aaf32baad5552b0230cc6c93e8fb7eaad4c19" +source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" dependencies = [ "jsonrpsee-core", "jsonrpsee-http-server", @@ -3208,10 +3389,9 @@ dependencies = [ [[package]] name = "jsonrpsee-client-transport" version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "765f7a36d5087f74e3b3b47805c2188fef8eb54afcb587b078d9f8ebfe9c7220" +source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" dependencies = [ - "futures 0.3.21", + "futures-util", "http", "jsonrpsee-core", "jsonrpsee-types", @@ -3229,14 +3409,16 @@ dependencies = [ [[package]] name = "jsonrpsee-core" version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82ef77ecd20c2254d54f5da8c0738eacca61e6b6511268a8f2753e3148c6c706" +source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" dependencies = [ "anyhow", "arrayvec 0.7.2", + "async-channel", + "async-lock", "async-trait", "beef", "futures-channel", + "futures-timer", "futures-util", "hyper", "jsonrpsee-types", @@ -3254,8 +3436,7 @@ dependencies = [ [[package]] name = "jsonrpsee-http-server" version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d35477aab03691360d21a77dd475f384474bc138c2051aafa766fe4aed50ac50" +source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" dependencies = [ "futures-channel", "futures-util", @@ -3273,10 +3454,9 @@ dependencies = [ [[package]] name = "jsonrpsee-proc-macros" version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7291c72805bc7d413b457e50d8ef3e87aa554da65ecbbc278abb7dfc283e7f0" +source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -3285,8 +3465,7 @@ dependencies = [ [[package]] name = "jsonrpsee-types" version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38b6aa52f322cbf20c762407629b8300f39bcc0cf0619840d9252a2f65fd2dd9" +source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" dependencies = [ "anyhow", "beef", @@ -3299,8 +3478,7 @@ dependencies = [ [[package]] name = "jsonrpsee-ws-client" version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd66d18bab78d956df24dd0d2e41e4c00afbb818fda94a98264bdd12ce8506ac" +source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" dependencies = [ "jsonrpsee-client-transport", "jsonrpsee-core", @@ -3310,8 +3488,7 @@ dependencies = [ [[package]] name = "jsonrpsee-ws-server" version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a382e22db11cd9a1f04f5a4cc5446f155a3cd20cd1778fc65f30a76aff524120" +source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" dependencies = [ "futures-channel", "futures-util", @@ -3342,6 +3519,16 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" +[[package]] +name = "kernel32-sys" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" +dependencies = [ + "winapi 0.2.8", + "winapi-build", +] + [[package]] name = "kusama-runtime" version = "0.9.19" @@ -3542,7 +3729,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" dependencies = [ "cc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -3552,7 +3739,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "afe203d669ec979b7128619bae5a63b7b42e9203c1b29146079ee05e2f604b52" dependencies = [ "cfg-if 1.0.0", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -3568,7 +3755,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3bec54343492ba5940a6c555e512c6721139835d28c59bc22febece72dfd0d9d" dependencies = [ "atomic", - "bytes", + "bytes 1.1.0", "futures 0.3.21", "lazy_static", "libp2p-core", @@ -3688,7 +3875,7 @@ dependencies = [ "asynchronous-codec 0.6.0", "base64", "byteorder", - "bytes", + "bytes 1.1.0", "fnv", "futures 0.3.21", "hex_fmt", @@ -3730,7 +3917,7 @@ checksum = "a2297dc0ca285f3a09d1368bde02449e539b46f94d32d53233f53f6625bcd3ba" dependencies = [ "arrayvec 0.5.2", "asynchronous-codec 0.6.0", - "bytes", + "bytes 1.1.0", "either", "fnv", "futures 0.3.21", @@ -3790,7 +3977,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f2cd64ef597f40e14bfce0497f50ecb63dd6d201c61796daeb4227078834fbf" dependencies = [ "asynchronous-codec 0.6.0", - "bytes", + "bytes 1.1.0", "futures 0.3.21", "libp2p-core", "log", @@ -3807,7 +3994,7 @@ version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8772c7a99088221bb7ca9c5c0574bf55046a7ab4c319f3619b275f28c8fb87a" dependencies = [ - "bytes", + "bytes 1.1.0", "curve25519-dalek 3.2.0", "futures 0.3.21", "lazy_static", @@ -3845,7 +4032,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5fba1a6ff33e4a274c89a3b1d78b9f34f32af13265cc5c46c16938262d4e945a" dependencies = [ "asynchronous-codec 0.6.0", - "bytes", + "bytes 1.1.0", "futures 0.3.21", "libp2p-core", "log", @@ -3876,7 +4063,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2852b61c90fa8ce3c8fcc2aba76e6cefc20d648f9df29157d6b3a916278ef3e3" dependencies = [ "asynchronous-codec 0.6.0", - "bytes", + "bytes 1.1.0", "futures 0.3.21", "futures-timer", "libp2p-core", @@ -3921,7 +4108,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a877a4ced6d46bf84677e1974e8cf61fb434af73b2e96fb48d6cb6223a4634d8" dependencies = [ "async-trait", - "bytes", + "bytes 1.1.0", "futures 0.3.21", "libp2p-core", "libp2p-swarm", @@ -4016,7 +4203,7 @@ dependencies = [ "quicksink", "rw-stream-sink", "soketto", - "url", + "url 2.2.2", "webpki-roots 0.21.1", ] @@ -4273,7 +4460,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" dependencies = [ "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -4392,6 +4579,25 @@ dependencies = [ "autocfg", ] +[[package]] +name = "mio" +version = "0.6.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" +dependencies = [ + "cfg-if 0.1.10", + "fuchsia-zircon", + "fuchsia-zircon-sys", + "iovec", + "kernel32-sys", + "libc", + "log", + "miow 0.2.2", + "net2", + "slab", + "winapi 0.2.8", +] + [[package]] name = "mio" version = "0.8.0" @@ -4400,9 +4606,33 @@ checksum = "ba272f85fa0b41fc91872be579b3bbe0f56b792aa361a380eb669469f68dafb2" dependencies = [ "libc", "log", - "miow", + "miow 0.3.7", "ntapi", - "winapi", + "winapi 0.3.9", +] + +[[package]] +name = "mio-extras" +version = "2.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" +dependencies = [ + "lazycell", + "log", + "mio 0.6.23", + "slab", +] + +[[package]] +name = "miow" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" +dependencies = [ + "kernel32-sys", + "net2", + "winapi 0.2.8", + "ws2_32-sys", ] [[package]] @@ -4411,7 +4641,7 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" dependencies = [ - "winapi", + "winapi 0.3.9", ] [[package]] @@ -4431,11 +4661,11 @@ dependencies = [ "byteorder", "data-encoding", "multihash 0.14.0", - "percent-encoding", + "percent-encoding 2.1.0", "serde", "static_assertions", "unsigned-varint 0.7.1", - "url", + "url 2.2.2", ] [[package]] @@ -4485,7 +4715,7 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "424f6e86263cd5294cbd7f1e95746b95aca0e0d66bff31e5a40d6baa87b4aa99" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro-error", "proc-macro2", "quote", @@ -4505,7 +4735,7 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56a336acba8bc87c8876f6425407dbbe6c417bf478b22015f8fb0994ef3bc0ab" dependencies = [ - "bytes", + "bytes 1.1.0", "futures 0.3.21", "log", "pin-project 1.0.10", @@ -4575,6 +4805,17 @@ dependencies = [ "tempfile", ] +[[package]] +name = "net2" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae" +dependencies = [ + "cfg-if 0.1.10", + "libc", + "winapi 0.3.9", +] + [[package]] name = "nix" version = "0.23.1" @@ -4617,7 +4858,7 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44" dependencies = [ - "winapi", + "winapi 0.3.9", ] [[package]] @@ -4809,7 +5050,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9" dependencies = [ - "winapi", + "winapi 0.3.9", ] [[package]] @@ -4830,7 +5071,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -4844,7 +5085,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -4860,7 +5101,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -4875,7 +5116,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -4899,7 +5140,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4919,7 +5160,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4933,12 +5174,13 @@ dependencies = [ "sp-std", "sp-storage", "sp-tracing", + "tokio", ] [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -4953,7 +5195,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "beefy-primitives", "frame-support", @@ -4969,7 +5211,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4992,7 +5234,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5074,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5093,7 +5335,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5110,7 +5352,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5126,7 +5368,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5149,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5162,7 +5404,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5180,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5195,7 +5437,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5218,7 +5460,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5234,7 +5476,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5254,7 +5496,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5271,7 +5513,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5288,7 +5530,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5306,12 +5548,13 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-core-client", + "jsonrpc-derive", "parity-scale-codec", "serde", - "serde_json", "sp-api", "sp-blockchain", "sp-core", @@ -5322,7 +5565,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5337,7 +5580,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -5351,7 +5594,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -5368,7 +5611,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5391,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5407,7 +5650,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5422,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -5436,7 +5679,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5452,7 +5695,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -5473,7 +5716,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5489,7 +5732,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -5503,7 +5746,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5526,9 +5769,9 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -5537,7 +5780,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "log", "sp-arithmetic", @@ -5546,7 +5789,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -5560,7 +5803,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5578,7 +5821,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5597,7 +5840,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-support", "frame-system", @@ -5614,10 +5857,11 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "anyhow", - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-core-client", + "jsonrpc-derive", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", "sp-api", @@ -5630,7 +5874,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5641,7 +5885,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5658,7 +5902,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5674,7 +5918,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5772,7 +6016,7 @@ version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c45ed1f39709f5a89338fab50e59816b2e8815f5bb58276e7ddf9afd495f73f8" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -5784,6 +6028,20 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" +[[package]] +name = "parity-tokio-ipc" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9981e32fb75e004cc148f5fb70342f393830e0a4aa62e3cc93b50976218d42b6" +dependencies = [ + "futures 0.3.21", + "libc", + "log", + "rand 0.7.3", + "tokio", + "winapi 0.3.9", +] + [[package]] name = "parity-util-mem" version = "0.11.0" @@ -5799,7 +6057,7 @@ dependencies = [ "smallvec", "tikv-jemalloc-ctl", "tikv-jemallocator", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -5828,6 +6086,24 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be5e13c266502aadf83426d87d81a0f5d1ef45b8027f5a471c360abfe4bfae92" +[[package]] +name = "parity-ws" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5983d3929ad50f12c3eb9a6743f19d691866ecd44da74c0a3308c3f8a56df0c6" +dependencies = [ + "byteorder", + "bytes 0.4.12", + "httparse", + "log", + "mio 0.6.23", + "mio-extras", + "rand 0.7.3", + "sha-1 0.8.2", + "slab", + "url 2.2.2", +] + [[package]] name = "parking" version = "2.0.0" @@ -5866,7 +6142,7 @@ dependencies = [ "libc", "redox_syscall 0.2.10", "smallvec", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -5912,6 +6188,12 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" +[[package]] +name = "percent-encoding" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" + [[package]] name = "percent-encoding" version = "2.1.0" @@ -6905,7 +7187,7 @@ version = "0.9.19" dependencies = [ "assert_matches", "expander 0.0.6", - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -7572,7 +7854,7 @@ dependencies = [ "libc", "log", "wepoll-ffi", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -7690,6 +7972,15 @@ dependencies = [ "uint", ] +[[package]] +name = "proc-macro-crate" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" +dependencies = [ + "toml", +] + [[package]] name = "proc-macro-crate" version = "1.1.3" @@ -7764,7 +8055,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001" dependencies = [ - "bytes", + "bytes 1.1.0", "prost-derive", ] @@ -7774,7 +8065,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5" dependencies = [ - "bytes", + "bytes 1.1.0", "heck 0.3.3", "itertools", "lazy_static", @@ -7807,7 +8098,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a" dependencies = [ - "bytes", + "bytes 1.1.0", "prost", ] @@ -8117,7 +8408,7 @@ dependencies = [ "bitflags", "libc", "mach", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -8142,7 +8433,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8162,7 +8453,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" dependencies = [ - "winapi", + "winapi 0.3.9", ] [[package]] @@ -8172,7 +8463,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb" dependencies = [ "base64", - "bytes", + "bytes 1.1.0", "encoding_rs", "futures-core", "futures-util", @@ -8187,14 +8478,14 @@ dependencies = [ "log", "mime", "native-tls", - "percent-encoding", + "percent-encoding 2.1.0", "pin-project-lite 0.2.7", "serde", "serde_json", "serde_urlencoded", "tokio", "tokio-native-tls", - "url", + "url 2.2.2", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -8240,7 +8531,7 @@ dependencies = [ "spin", "untrusted", "web-sys", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -8347,7 +8638,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb" dependencies = [ "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -8409,7 +8700,7 @@ dependencies = [ "io-lifetimes", "libc", "linux-raw-sys", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -8514,7 +8805,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "log", "sp-core", @@ -8525,7 +8816,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "futures 0.3.21", @@ -8552,7 +8843,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8575,7 +8866,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8591,7 +8882,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8608,9 +8899,9 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -8619,7 +8910,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "chrono", "clap", @@ -8657,7 +8948,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "fnv", "futures 0.3.21", @@ -8685,7 +8976,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "hash-db", "kvdb", @@ -8710,7 +9001,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "futures 0.3.21", @@ -8734,7 +9025,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "fork-tree", @@ -8777,10 +9068,12 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures 0.3.21", - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-core-client", + "jsonrpc-derive", "sc-consensus-babe", "sc-consensus-epochs", "sc-rpc-api", @@ -8799,7 +9092,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8812,7 +9105,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "futures 0.3.21", @@ -8837,7 +9130,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "sc-client-api", "sp-authorship", @@ -8848,7 +9141,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "lazy_static", "lru 0.7.5", @@ -8875,7 +9168,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "environmental", "parity-scale-codec", @@ -8892,7 +9185,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "log", "parity-scale-codec", @@ -8908,7 +9201,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8926,7 +9219,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "ahash", "async-trait", @@ -8966,11 +9259,14 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "finality-grandpa", "futures 0.3.21", - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-core-client", + "jsonrpc-derive", + "jsonrpc-pubsub", "log", "parity-scale-codec", "sc-client-api", @@ -8987,7 +9283,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "ansi_term", "futures 0.3.21", @@ -9004,7 +9300,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "hex", @@ -9019,12 +9315,12 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "asynchronous-codec 0.5.0", "bitflags", - "bytes", + "bytes 1.1.0", "cid", "either", "fnv", @@ -9068,7 +9364,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "ahash", "futures 0.3.21", @@ -9085,9 +9381,9 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "bytes", + "bytes 1.1.0", "fnv", "futures 0.3.21", "futures-timer", @@ -9113,7 +9409,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures 0.3.21", "libp2p", @@ -9126,7 +9422,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9135,16 +9431,16 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "anyhow", - "async-trait", "futures 0.3.21", "hash-db", - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-pubsub", "log", "parity-scale-codec", "parking_lot 0.12.0", + "sc-block-builder", "sc-chain-spec", "sc-client-api", "sc-rpc-api", @@ -9166,11 +9462,13 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "anyhow", "futures 0.3.21", - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-core-client", + "jsonrpc-derive", + "jsonrpc-pubsub", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -9190,10 +9488,14 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "anyhow", - "jsonrpsee", + "futures 0.3.21", + "jsonrpc-core", + "jsonrpc-http-server", + "jsonrpc-ipc-server", + "jsonrpc-pubsub", + "jsonrpc-ws-server", "log", "serde_json", "substrate-prometheus-endpoint", @@ -9203,7 +9505,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "directories", @@ -9211,7 +9513,8 @@ dependencies = [ "futures 0.3.21", "futures-timer", "hash-db", - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-pubsub", "log", "parity-scale-codec", "parity-util-mem", @@ -9267,7 +9570,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "log", "parity-scale-codec", @@ -9281,10 +9584,11 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "anyhow", - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-core-client", + "jsonrpc-derive", "parity-scale-codec", "sc-chain-spec", "sc-client-api", @@ -9301,7 +9605,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures 0.3.21", "libc", @@ -9320,7 +9624,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "chrono", "futures 0.3.21", @@ -9338,7 +9642,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "ansi_term", "atty", @@ -9369,9 +9673,9 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -9380,7 +9684,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9407,7 +9711,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures 0.3.21", "log", @@ -9420,7 +9724,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9450,7 +9754,7 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4260c630e8a8a33429d1688eff2f163f24c65a4e1b1578ef6b565061336e4b6f" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -9463,7 +9767,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" dependencies = [ "lazy_static", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -9901,7 +10205,7 @@ checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" dependencies = [ "cfg-if 1.0.0", "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -9911,7 +10215,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" dependencies = [ "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -9921,7 +10225,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" dependencies = [ "base64", - "bytes", + "bytes 1.1.0", "flate2", "futures 0.3.21", "httparse", @@ -9933,7 +10237,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "hash-db", "log", @@ -9950,10 +10254,10 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "blake2 0.10.2", - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -9962,7 +10266,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "scale-info", @@ -9975,7 +10279,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "integer-sqrt", "num-traits", @@ -9990,7 +10294,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10003,7 +10307,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "parity-scale-codec", @@ -10015,7 +10319,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "sp-api", @@ -10027,7 +10331,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures 0.3.21", "log", @@ -10045,7 +10349,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "futures 0.3.21", @@ -10064,7 +10368,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "merlin", @@ -10087,7 +10391,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10101,7 +10405,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -10113,7 +10417,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "base58", "bitflags", @@ -10159,7 +10463,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "blake2 0.10.2", "byteorder", @@ -10173,7 +10477,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "proc-macro2", "quote", @@ -10184,7 +10488,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10193,7 +10497,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "proc-macro2", "quote", @@ -10203,7 +10507,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "environmental", "parity-scale-codec", @@ -10214,7 +10518,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "finality-grandpa", "log", @@ -10232,7 +10536,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10246,7 +10550,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures 0.3.21", "hash-db", @@ -10271,7 +10575,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "lazy_static", "sp-core", @@ -10282,7 +10586,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "futures 0.3.21", @@ -10299,7 +10603,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "thiserror", "zstd", @@ -10308,7 +10612,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "log", "parity-scale-codec", @@ -10323,7 +10627,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10337,7 +10641,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "sp-api", "sp-core", @@ -10347,7 +10651,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "backtrace", "lazy_static", @@ -10357,7 +10661,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "rustc-hash", "serde", @@ -10367,7 +10671,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "either", "hash256-std-hasher", @@ -10389,7 +10693,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10406,10 +10710,10 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "Inflector", - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -10418,7 +10722,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "serde", "serde_json", @@ -10427,7 +10731,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10441,7 +10745,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10452,7 +10756,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "hash-db", "log", @@ -10474,12 +10778,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10492,7 +10796,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "log", "sp-core", @@ -10505,7 +10809,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "futures-timer", @@ -10521,7 +10825,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "sp-std", @@ -10533,7 +10837,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "sp-api", "sp-runtime", @@ -10542,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "log", @@ -10558,7 +10862,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "hash-db", "memory-db", @@ -10574,7 +10878,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10591,7 +10895,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10602,7 +10906,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "impl-trait-for-tuples", "log", @@ -10794,7 +11098,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "platforms", ] @@ -10802,17 +11106,18 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-core-client", + "jsonrpc-derive", "log", "parity-scale-codec", "sc-client-api", "sc-rpc-api", "sc-transaction-pool-api", - "serde_json", "sp-api", "sp-block-builder", "sp-blockchain", @@ -10823,7 +11128,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures-util", "hyper", @@ -10836,10 +11141,11 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "anyhow", - "jsonrpsee", + "jsonrpc-core", + "jsonrpc-core-client", + "jsonrpc-derive", "log", "parity-scale-codec", "sc-client-api", @@ -10858,7 +11164,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "async-trait", "futures 0.3.21", @@ -10884,7 +11190,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -10894,9 +11200,9 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -10905,7 +11211,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "ansi_term", "build-helper", @@ -11002,7 +11308,7 @@ dependencies = [ "rand 0.8.5", "redox_syscall 0.2.10", "remove_dir_all", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -11013,7 +11319,7 @@ checksum = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42" dependencies = [ "byteorder", "dirs", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -11242,7 +11548,7 @@ checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" dependencies = [ "libc", "wasi 0.10.0+wasi-snapshot-preview1", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -11294,10 +11600,10 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee" dependencies = [ - "bytes", + "bytes 1.1.0", "libc", "memchr", - "mio", + "mio 0.8.0", "num_cpus", "once_cell", "parking_lot 0.12.0", @@ -11305,7 +11611,7 @@ dependencies = [ "signal-hook-registry", "socket2 0.4.4", "tokio-macros", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -11351,6 +11657,17 @@ dependencies = [ "webpki 0.22.0", ] +[[package]] +name = "tokio-stream" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3" +dependencies = [ + "futures-core", + "pin-project-lite 0.2.7", + "tokio", +] + [[package]] name = "tokio-tungstenite" version = "0.17.1" @@ -11369,7 +11686,7 @@ version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0" dependencies = [ - "bytes", + "bytes 1.1.0", "futures-core", "futures-sink", "log", @@ -11383,7 +11700,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764" dependencies = [ - "bytes", + "bytes 1.1.0", "futures-core", "futures-io", "futures-sink", @@ -11466,7 +11783,7 @@ version = "0.9.19" dependencies = [ "assert_matches", "expander 0.0.6", - "proc-macro-crate", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn", @@ -11569,7 +11886,7 @@ dependencies = [ "futures-channel", "futures-io", "futures-util", - "idna", + "idna 0.2.3", "ipnet", "lazy_static", "log", @@ -11577,7 +11894,7 @@ dependencies = [ "smallvec", "thiserror", "tinyvec", - "url", + "url 2.2.2", ] [[package]] @@ -11608,7 +11925,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=dp-jsonrpsee-integration-2#5b99226d7babefd796b55cdea4a3d30b81edbd0e" +source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" dependencies = [ "clap", "jsonrpsee", @@ -11660,14 +11977,14 @@ checksum = "d96a2dea40e7570482f28eb57afbe42d97551905da6a9400acc5c328d24004f5" dependencies = [ "base64", "byteorder", - "bytes", + "bytes 1.1.0", "http", "httparse", "log", "rand 0.8.5", "sha-1 0.10.0", "thiserror", - "url", + "url 2.2.2", "utf-8", ] @@ -11772,7 +12089,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35581ff83d4101e58b582e607120c7f5ffb17e632a980b1f38334d76b36908b2" dependencies = [ "asynchronous-codec 0.5.0", - "bytes", + "bytes 1.1.0", "futures-io", "futures-util", ] @@ -11784,7 +12101,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d86a8dc7f45e4c1b0d30e43038c38f274e77af056aa5f74b93c2cf9eb3c1c836" dependencies = [ "asynchronous-codec 0.6.0", - "bytes", + "bytes 1.1.0", "futures-io", "futures-util", ] @@ -11795,6 +12112,17 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" +[[package]] +name = "url" +version = "1.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" +dependencies = [ + "idna 0.1.5", + "matches", + "percent-encoding 1.0.1", +] + [[package]] name = "url" version = "2.2.2" @@ -11802,9 +12130,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" dependencies = [ "form_urlencoded", - "idna", + "idna 0.2.3", "matches", - "percent-encoding", + "percent-encoding 2.1.0", ] [[package]] @@ -11879,7 +12207,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" dependencies = [ "same-file", - "winapi", + "winapi 0.3.9", "winapi-util", ] @@ -12072,7 +12400,7 @@ dependencies = [ "wasmtime-environ", "wasmtime-jit", "wasmtime-runtime", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -12091,7 +12419,7 @@ dependencies = [ "serde", "sha2 0.9.8", "toml", - "winapi", + "winapi 0.3.9", "zstd", ] @@ -12160,7 +12488,7 @@ dependencies = [ "wasmtime-environ", "wasmtime-jit-debug", "wasmtime-runtime", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -12196,7 +12524,7 @@ dependencies = [ "thiserror", "wasmtime-environ", "wasmtime-jit-debug", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -12386,6 +12714,12 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c" +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" + [[package]] name = "winapi" version = "0.3.9" @@ -12396,6 +12730,12 @@ dependencies = [ "winapi-x86_64-pc-windows-gnu", ] +[[package]] +name = "winapi-build" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" + [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" @@ -12408,7 +12748,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" dependencies = [ - "winapi", + "winapi 0.3.9", ] [[package]] @@ -12466,7 +12806,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" dependencies = [ - "winapi", + "winapi 0.3.9", ] [[package]] @@ -12475,7 +12815,17 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" dependencies = [ - "winapi", + "winapi 0.3.9", +] + +[[package]] +name = "ws2_32-sys" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" +dependencies = [ + "winapi 0.2.8", + "winapi-build", ] [[package]] @@ -12692,7 +13042,7 @@ dependencies = [ "tokio", "tokio-tungstenite", "tracing-gum", - "url", + "url 2.2.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 78339014e8a7..938dcf678b23 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -237,3 +237,5 @@ polkadot = { path = "/usr/bin/polkadot" } [package.metadata.spellcheck] config = "./scripts/gitlab/spellcheck.toml" +[patch.crates-io] +jsonrpsee = { git = "https://github.com/paritytech/jsonrpsee" } diff --git a/bridges/bin/millau/node/Cargo.toml b/bridges/bin/millau/node/Cargo.toml index d45414dff8d9..3825b92b703c 100644 --- a/bridges/bin/millau/node/Cargo.toml +++ b/bridges/bin/millau/node/Cargo.toml @@ -32,7 +32,7 @@ node-inspect = { git = "https://github.com/paritytech/substrate", branch = "mast pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/bin/millau/runtime/Cargo.toml b/bridges/bin/millau/runtime/Cargo.toml index f709fad8f2c8..979417c4cc82 100644 --- a/bridges/bin/millau/runtime/Cargo.toml +++ b/bridges/bin/millau/runtime/Cargo.toml @@ -32,38 +32,38 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] bridge-runtime-common = { path = "../../runtime-common", features = ["integrity-test"] } diff --git a/bridges/bin/rialto-parachain/node/Cargo.toml b/bridges/bin/rialto-parachain/node/Cargo.toml index da5be341219d..41021a35ed2b 100644 --- a/bridges/bin/rialto-parachain/node/Cargo.toml +++ b/bridges/bin/rialto-parachain/node/Cargo.toml @@ -51,7 +51,7 @@ sc-network = { git = "https://github.com/paritytech/substrate", branch = "master sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", features = ['wasmtime'] , branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", features = ['wasmtime'] } sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } @@ -88,4 +88,4 @@ polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "maste polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } \ No newline at end of file diff --git a/bridges/bin/rialto-parachain/runtime/Cargo.toml b/bridges/bin/rialto-parachain/runtime/Cargo.toml index 00c611d96d74..1d0870fcbcd8 100644 --- a/bridges/bin/rialto-parachain/runtime/Cargo.toml +++ b/bridges/bin/rialto-parachain/runtime/Cargo.toml @@ -22,35 +22,35 @@ bp-rialto-parachain = { path = "../../../primitives/chain-rialto-parachain", def # Substrate Dependencies ## Substrate Primitive Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } ## Substrate FRAME Dependencies -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } ## Substrate Pallet Dependencies -pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } # Cumulus Dependencies cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "master", default-features = false } diff --git a/bridges/bin/rialto/node/Cargo.toml b/bridges/bin/rialto/node/Cargo.toml index 7859ff5aa457..512aa3ba710a 100644 --- a/bridges/bin/rialto/node/Cargo.toml +++ b/bridges/bin/rialto/node/Cargo.toml @@ -40,7 +40,7 @@ pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrat pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } @@ -50,7 +50,7 @@ sc-executor = { git = "https://github.com/paritytech/substrate", branch = "maste sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master"} sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/bin/rialto/runtime/Cargo.toml b/bridges/bin/rialto/runtime/Cargo.toml index 65b2653ce7d0..a64376efb223 100644 --- a/bridges/bin/rialto/runtime/Cargo.toml +++ b/bridges/bin/rialto/runtime/Cargo.toml @@ -31,40 +31,40 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager" # Substrate Dependencies -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } # Polkadot (parachain) Dependencies diff --git a/bridges/bin/runtime-common/Cargo.toml b/bridges/bin/runtime-common/Cargo.toml index 2eb3fe05a1a3..d1ec30c0aa4b 100644 --- a/bridges/bin/runtime-common/Cargo.toml +++ b/bridges/bin/runtime-common/Cargo.toml @@ -25,17 +25,17 @@ pallet-bridge-messages = { path = "../../modules/messages", default-features = f # Substrate dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } [features] default = ["std"] diff --git a/bridges/modules/dispatch/Cargo.toml b/bridges/modules/dispatch/Cargo.toml index 0fe53471998d..98164452b836 100644 --- a/bridges/modules/dispatch/Cargo.toml +++ b/bridges/modules/dispatch/Cargo.toml @@ -18,11 +18,11 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/modules/grandpa/Cargo.toml b/bridges/modules/grandpa/Cargo.toml index 483dfa2a699f..eac80375da12 100644 --- a/bridges/modules/grandpa/Cargo.toml +++ b/bridges/modules/grandpa/Cargo.toml @@ -22,16 +22,16 @@ bp-header-chain = { path = "../../primitives/header-chain", default-features = f # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } # Optional Benchmarking Dependencies bp-test-utils = { path = "../../primitives/test-utils", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } [dev-dependencies] sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/modules/messages/Cargo.toml b/bridges/modules/messages/Cargo.toml index cbe9ff957063..804f323f10b6 100644 --- a/bridges/modules/messages/Cargo.toml +++ b/bridges/modules/messages/Cargo.toml @@ -22,12 +22,12 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/modules/shift-session-manager/Cargo.toml b/bridges/modules/shift-session-manager/Cargo.toml index 217c18fc889a..30a5618b115f 100644 --- a/bridges/modules/shift-session-manager/Cargo.toml +++ b/bridges/modules/shift-session-manager/Cargo.toml @@ -12,11 +12,11 @@ scale-info = { version = "2.0.1", default-features = false, features = ["derive" # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/modules/token-swap/Cargo.toml b/bridges/modules/token-swap/Cargo.toml index 065dfced1566..aad395fb7a30 100644 --- a/bridges/modules/token-swap/Cargo.toml +++ b/bridges/modules/token-swap/Cargo.toml @@ -23,13 +23,13 @@ pallet-bridge-messages = { path = "../messages", default-features = false } # Substrate Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/bridges/primitives/chain-kusama/Cargo.toml b/bridges/primitives/chain-kusama/Cargo.toml index 282de374c8e5..a676b565c33d 100644 --- a/bridges/primitives/chain-kusama/Cargo.toml +++ b/bridges/primitives/chain-kusama/Cargo.toml @@ -17,11 +17,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-millau/Cargo.toml b/bridges/primitives/chain-millau/Cargo.toml index 79453e0b0a12..0aaeb5b6bf9d 100644 --- a/bridges/primitives/chain-millau/Cargo.toml +++ b/bridges/primitives/chain-millau/Cargo.toml @@ -22,14 +22,14 @@ serde = { version = "1.0", optional = true, features = ["derive"] } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-polkadot/Cargo.toml b/bridges/primitives/chain-polkadot/Cargo.toml index dc095b626a8e..738899b658cd 100644 --- a/bridges/primitives/chain-polkadot/Cargo.toml +++ b/bridges/primitives/chain-polkadot/Cargo.toml @@ -17,11 +17,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-rialto-parachain/Cargo.toml b/bridges/primitives/chain-rialto-parachain/Cargo.toml index 4e165818e735..a15c40929579 100644 --- a/bridges/primitives/chain-rialto-parachain/Cargo.toml +++ b/bridges/primitives/chain-rialto-parachain/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-rialto/Cargo.toml b/bridges/primitives/chain-rialto/Cargo.toml index d661ded6cdfb..663f9076657d 100644 --- a/bridges/primitives/chain-rialto/Cargo.toml +++ b/bridges/primitives/chain-rialto/Cargo.toml @@ -15,12 +15,12 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-rococo/Cargo.toml b/bridges/primitives/chain-rococo/Cargo.toml index 35996ea175aa..814cd09bf170 100644 --- a/bridges/primitives/chain-rococo/Cargo.toml +++ b/bridges/primitives/chain-rococo/Cargo.toml @@ -16,11 +16,11 @@ bp-polkadot-core = { path = "../polkadot-core", default-features = false } bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-westend/Cargo.toml b/bridges/primitives/chain-westend/Cargo.toml index 9b3444085996..ee6e2b9be99a 100644 --- a/bridges/primitives/chain-westend/Cargo.toml +++ b/bridges/primitives/chain-westend/Cargo.toml @@ -19,11 +19,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/chain-wococo/Cargo.toml b/bridges/primitives/chain-wococo/Cargo.toml index a090120bfed9..633cdd15c1f5 100644 --- a/bridges/primitives/chain-wococo/Cargo.toml +++ b/bridges/primitives/chain-wococo/Cargo.toml @@ -16,9 +16,9 @@ bp-rococo = { path = "../chain-rococo", default-features = false } bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/header-chain/Cargo.toml b/bridges/primitives/header-chain/Cargo.toml index 00beeda457fb..945d79d57cd9 100644 --- a/bridges/primitives/header-chain/Cargo.toml +++ b/bridges/primitives/header-chain/Cargo.toml @@ -18,11 +18,11 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] assert_matches = "1.5" diff --git a/bridges/primitives/message-dispatch/Cargo.toml b/bridges/primitives/message-dispatch/Cargo.toml index b3e788fc3903..39b2d00111e1 100644 --- a/bridges/primitives/message-dispatch/Cargo.toml +++ b/bridges/primitives/message-dispatch/Cargo.toml @@ -13,8 +13,8 @@ scale-info = { version = "2.0.1", default-features = false, features = ["derive" # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/messages/Cargo.toml b/bridges/primitives/messages/Cargo.toml index bff0c1b4e911..2a84f74d225b 100644 --- a/bridges/primitives/messages/Cargo.toml +++ b/bridges/primitives/messages/Cargo.toml @@ -19,10 +19,10 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] hex = "0.4" diff --git a/bridges/primitives/polkadot-core/Cargo.toml b/bridges/primitives/polkadot-core/Cargo.toml index aaa53be33638..1542a784ef56 100644 --- a/bridges/primitives/polkadot-core/Cargo.toml +++ b/bridges/primitives/polkadot-core/Cargo.toml @@ -17,13 +17,13 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Based Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] hex = "0.4" diff --git a/bridges/primitives/runtime/Cargo.toml b/bridges/primitives/runtime/Cargo.toml index aa48e5ff4d69..085cfb9dbc6d 100644 --- a/bridges/primitives/runtime/Cargo.toml +++ b/bridges/primitives/runtime/Cargo.toml @@ -14,13 +14,13 @@ scale-info = { version = "2.0.1", default-features = false, features = ["derive" # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] hex-literal = "0.3" diff --git a/bridges/primitives/test-utils/Cargo.toml b/bridges/primitives/test-utils/Cargo.toml index 3ec7467f93fd..6da5c7c0f4b5 100644 --- a/bridges/primitives/test-utils/Cargo.toml +++ b/bridges/primitives/test-utils/Cargo.toml @@ -10,10 +10,10 @@ bp-header-chain = { path = "../header-chain", default-features = false } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } ed25519-dalek = { version = "1.0", default-features = false, features = ["u64_backend"] } finality-grandpa = { version = "0.15.0", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/bridges/primitives/token-swap/Cargo.toml b/bridges/primitives/token-swap/Cargo.toml index 382be6f8fc5e..9097856f853a 100644 --- a/bridges/primitives/token-swap/Cargo.toml +++ b/bridges/primitives/token-swap/Cargo.toml @@ -16,10 +16,10 @@ bp-runtime = { path = "../runtime", default-features = false } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] hex = "0.4" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f8f54349ad9c..4d613b9874a0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -26,16 +26,16 @@ polkadot-node-core-pvf = { path = "../node/core/pvf", optional = true } polkadot-performance-test = { path = "../node/test/performance-test", optional = true } sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } polkadot-node-metrics = { path = "../node/metrics" } -sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } # this crate is used only to enable `trie-memory-tracker` feature # see https://github.com/paritytech/substrate/pull/6745 -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [build-dependencies] substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/core-primitives/Cargo.toml b/core-primitives/Cargo.toml index b68e6f57aa4b..3e9a4b503351 100644 --- a/core-primitives/Cargo.toml +++ b/core-primitives/Cargo.toml @@ -5,9 +5,9 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } parity-scale-codec = { version = "3.1.2", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/node/client/Cargo.toml b/node/client/Cargo.toml index d03701547a3e..34815dad0343 100644 --- a/node/client/Cargo.toml +++ b/node/client/Cargo.toml @@ -28,12 +28,12 @@ sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index 35501680c853..e65ae48d33fb 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -24,11 +24,11 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } -sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] parking_lot = "0.12.0" diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index 597512393e25..638e63a3eb2a 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -17,7 +17,7 @@ gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index 928f47f762eb..013c28d76ea3 100644 --- a/node/network/availability-distribution/Cargo.toml +++ b/node/network/availability-distribution/Cargo.toml @@ -14,7 +14,7 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" rand = "0.8.5" @@ -24,7 +24,7 @@ fatality = "0.0.6" [dev-dependencies] polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index fd84e74861b7..9d1fc852c917 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -27,7 +27,7 @@ log = "0.4.16" env_logger = "0.9.0" assert_matches = "1.4.0" -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } parity-scale-codec = { version = "3.1.2", features = ["std"] } diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index 6ec974902258..156fe2fb5223 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-primitives = { path = "../../primitives" } diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 446b47f250df..c07df95e9a4d 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -25,7 +25,7 @@ sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -service = { package = "sc-service", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" } # Substrate Primitives diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index 5049ff76015d..49adb0c9d904 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -48,7 +48,7 @@ sc-executor = { git = "https://github.com/paritytech/substrate", branch = "maste sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "wasmtime" ] , branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "wasmtime" ] } sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } @@ -58,7 +58,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = " substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } serde_json = "1.0.79" substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } tokio = { version = "1.17.0", features = ["macros"] } diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 94e2d34a5006..06d25ff82be4 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -12,10 +12,10 @@ edition = "2021" parity-scale-codec = { version = "3.1.2", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } derive_more = "0.99.11" diff --git a/parachain/test-parachains/adder/Cargo.toml b/parachain/test-parachains/adder/Cargo.toml index 687675a6183b..9b5360bff3fa 100644 --- a/parachain/test-parachains/adder/Cargo.toml +++ b/parachain/test-parachains/adder/Cargo.toml @@ -9,12 +9,12 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } [build-dependencies] substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/parachain/test-parachains/undying/Cargo.toml b/parachain/test-parachains/undying/Cargo.toml index 2f3527952856..c08a0756166d 100644 --- a/parachain/test-parachains/undying/Cargo.toml +++ b/parachain/test-parachains/undying/Cargo.toml @@ -9,13 +9,13 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } log = { version = "0.4.16", default-features = false } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } [build-dependencies] substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 60901bcbdb7d..9ad26fb57a1d 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -8,24 +8,24 @@ edition = "2021" serde = { version = "1.0.136", optional = true, features = ["derive"] } scale-info = { version = "2.1.1", default-features = false, features = ["bit-vec", "derive"] } parity-scale-codec = { version = "3.1.2", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-parachain = { path = "../parachain", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } hex-literal = "0.3.4" parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/primitives/test-helpers/Cargo.toml b/primitives/test-helpers/Cargo.toml index 2902feae60eb..243b714280c0 100644 --- a/primitives/test-helpers/Cargo.toml +++ b/primitives/test-helpers/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../" } rand = "0.8.5" diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 884c449fc14b..7fdb8cc9d4a6 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -15,34 +15,34 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } libsecp256k1 = { version = "0.7.0", default-features = false } diff --git a/runtime/common/slot_range_helper/Cargo.toml b/runtime/common/slot_range_helper/Cargo.toml index b8aa3b2e162c..0bc78b78c2a1 100644 --- a/runtime/common/slot_range_helper/Cargo.toml +++ b/runtime/common/slot_range_helper/Cargo.toml @@ -8,8 +8,8 @@ edition = "2021" paste = "1.0" enumn = "0.1.3" parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 33fa5e319606..57309f19bd0c 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -16,75 +16,75 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } kusama-runtime-constants = { package = "kusama-runtime-constants", path = "./constants", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-gilt = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-gilt = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } diff --git a/runtime/kusama/constants/Cargo.toml b/runtime/kusama/constants/Cargo.toml index 34b210dd0484..1f4b59417203 100644 --- a/runtime/kusama/constants/Cargo.toml +++ b/runtime/kusama/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/metrics/Cargo.toml b/runtime/metrics/Cargo.toml index 2803d58587a2..b2fec658cb78 100644 --- a/runtime/metrics/Cargo.toml +++ b/runtime/metrics/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false} +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } parity-scale-codec = { version = "3.1.2", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index 8a58446e77f7..73c2c06ed997 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -14,29 +14,29 @@ serde = { version = "1.0.136", features = [ "derive" ], optional = true } derive_more = "0.99.17" bitflags = "1.3.2" -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } xcm = { package = "xcm", path = "../../xcm", default-features = false } xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false } @@ -109,4 +109,4 @@ try-runtime = [ "pallet-vesting/try-runtime", ] runtime-metrics = ["sp-tracing/with-tracing", "polkadot-runtime-metrics/runtime-metrics"] -vstaging = [] +vstaging = [] \ No newline at end of file diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index f1ed11163855..531bfff2d8c5 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -16,70 +16,70 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-runtime-constants = { package = "polkadot-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } diff --git a/runtime/polkadot/constants/Cargo.toml b/runtime/polkadot/constants/Cargo.toml index cf62140f52cd..f5c13d8ea369 100644 --- a/runtime/polkadot/constants/Cargo.toml +++ b/runtime/polkadot/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index 4edb11da8f0f..bb7f86eab5e5 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -13,52 +13,52 @@ serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" log = { version = "0.4.16", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } rococo-runtime-constants = { package = "rococo-runtime-constants", path = "./constants", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -82,9 +82,9 @@ pallet-bridge-grandpa = { path = "../../bridges/modules/grandpa", default-featur pallet-bridge-messages = { path = "../../bridges/modules/messages", default-features = false } # Benchmarking Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } [build-dependencies] substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/runtime/rococo/constants/Cargo.toml b/runtime/rococo/constants/Cargo.toml index 816c978b7f0d..ac4c7c3ca81d 100644 --- a/runtime/rococo/constants/Cargo.toml +++ b/runtime/rococo/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index 0217b7c0a85b..ff85824cc611 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -15,45 +15,45 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } test-runtime-constants = { package = "test-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } diff --git a/runtime/test-runtime/constants/Cargo.toml b/runtime/test-runtime/constants/Cargo.toml index 6d7af71ec47f..a8e2fc1c57ba 100644 --- a/runtime/test-runtime/constants/Cargo.toml +++ b/runtime/test-runtime/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index 6ecc48879903..d9b48e3ec83d 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -15,71 +15,71 @@ serde = { version = "1.0.136", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } westend-runtime-constants = { package = "westend-runtime-constants", path = "./constants", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-nicks = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-nicks = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } diff --git a/runtime/westend/constants/Cargo.toml b/runtime/westend/constants/Cargo.toml index d7b9bb39560a..3629cbf5fc8a 100644 --- a/runtime/westend/constants/Cargo.toml +++ b/runtime/westend/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/xcm/pallet-xcm-benchmarks/Cargo.toml b/xcm/pallet-xcm-benchmarks/Cargo.toml index 617462de51de..c6652d2c222a 100644 --- a/xcm/pallet-xcm-benchmarks/Cargo.toml +++ b/xcm/pallet-xcm-benchmarks/Cargo.toml @@ -10,21 +10,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } -frame-support = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "master" } -frame-system = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "master" } -sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "master" } -sp-std = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "master" } +frame-support = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-system = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +sp-runtime = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +sp-std = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } xcm-executor = { path = "../xcm-executor", default-features = false, features = ["runtime-benchmarks"] } -frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "master" } +frame-benchmarking = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } xcm = { path = "..", default-features = false, features = ["runtime-benchmarks"] } log = "0.4.16" [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate" , branch = "master" } -pallet-assets = { git = "https://github.com/paritytech/substrate" , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate" , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate" , branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate" , branch = "master" } +pallet-balances = { branch = "master", git = "https://github.com/paritytech/substrate" } +pallet-assets = { branch = "master", git = "https://github.com/paritytech/substrate" } +sp-core = { branch = "master", git = "https://github.com/paritytech/substrate" } +sp-io = { branch = "master", git = "https://github.com/paritytech/substrate" } +sp-tracing = { branch = "master", git = "https://github.com/paritytech/substrate" } xcm-builder = { path = "../xcm-builder" } xcm = { path = ".." } # temp diff --git a/xcm/pallet-xcm/Cargo.toml b/xcm/pallet-xcm/Cargo.toml index 0621821888f6..7da87c37f447 100644 --- a/xcm/pallet-xcm/Cargo.toml +++ b/xcm/pallet-xcm/Cargo.toml @@ -22,7 +22,7 @@ xcm-executor = { path = "../xcm-executor", default-features = false } [dev-dependencies] pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } xcm-builder = { path = "../xcm-builder" } polkadot-parachain = { path = "../../parachain" } diff --git a/xcm/xcm-builder/Cargo.toml b/xcm/xcm-builder/Cargo.toml index 531ce46e0700..6cec7193acfd 100644 --- a/xcm/xcm-builder/Cargo.toml +++ b/xcm/xcm-builder/Cargo.toml @@ -10,13 +10,13 @@ parity-scale-codec = { version = "3.1.2", default-features = false, features = [ scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } log = { version = "0.4.16", default-features = false } # Polkadot dependencies diff --git a/xcm/xcm-executor/Cargo.toml b/xcm/xcm-executor/Cargo.toml index 64fbebd6ae60..821c72538149 100644 --- a/xcm/xcm-executor/Cargo.toml +++ b/xcm/xcm-executor/Cargo.toml @@ -9,14 +9,14 @@ version = "0.9.19" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } log = { version = "0.4.16", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } [features] default = ["std"] diff --git a/xcm/xcm-executor/integration-tests/Cargo.toml b/xcm/xcm-executor/integration-tests/Cargo.toml index a4e7a5f601aa..05cb21500c34 100644 --- a/xcm/xcm-executor/integration-tests/Cargo.toml +++ b/xcm/xcm-executor/integration-tests/Cargo.toml @@ -6,7 +6,7 @@ description = "Integration tests for the XCM Executor" version = "0.9.19" [dependencies] -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.21" pallet-xcm = { path = "../../pallet-xcm" } @@ -15,7 +15,7 @@ polkadot-test-runtime = { path = "../../../runtime/test-runtime" } polkadot-test-service = { path = "../../../node/test/service" } sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../..", default-features = false } xcm-executor = { path = ".." } From 9c782d95330c326e9fc458ab1969fdca53c6f94a Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 21 Apr 2022 11:42:34 +0200 Subject: [PATCH 12/23] jsonrpsee v0.11 --- Cargo.lock | 490 ++++++++++++++++++++------------- Cargo.toml | 3 - rpc/Cargo.toml | 2 +- utils/staking-miner/Cargo.toml | 2 +- 4 files changed, 297 insertions(+), 200 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 098084d1c704..9f54eaa53363 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -444,7 +444,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "beefy-primitives", "fnv", @@ -478,7 +478,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -501,12 +501,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "scale-info", @@ -2160,7 +2160,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", ] @@ -2178,7 +2178,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -2200,7 +2200,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "Inflector", "chrono", @@ -2248,7 +2248,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -2259,7 +2259,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2275,7 +2275,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -2303,7 +2303,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "bitflags", "frame-metadata", @@ -2333,7 +2333,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2345,7 +2345,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.3", @@ -2357,7 +2357,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "proc-macro2", "quote", @@ -2367,7 +2367,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2390,7 +2390,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -2401,7 +2401,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "log", @@ -2418,7 +2418,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -2433,7 +2433,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "sp-api", @@ -2442,7 +2442,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "sp-api", @@ -2638,7 +2638,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "chrono", "frame-election-provider-support", @@ -3376,25 +3376,60 @@ dependencies = [ [[package]] name = "jsonrpsee" version = "0.10.1" -source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91dc760c341fa81173f9a434931aaf32baad5552b0230cc6c93e8fb7eaad4c19" +dependencies = [ + "jsonrpsee-core 0.10.1", + "jsonrpsee-proc-macros 0.10.1", + "jsonrpsee-types 0.10.1", + "jsonrpsee-ws-client 0.10.1", +] + +[[package]] +name = "jsonrpsee" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d02a921aa22006ed979c2e1c407fd21302ac6049e5b544634ec5ec41516363d" dependencies = [ - "jsonrpsee-core", + "jsonrpsee-core 0.11.0", "jsonrpsee-http-server", - "jsonrpsee-proc-macros", - "jsonrpsee-types", - "jsonrpsee-ws-client", + "jsonrpsee-proc-macros 0.11.0", + "jsonrpsee-types 0.11.0", + "jsonrpsee-ws-client 0.11.0", "jsonrpsee-ws-server", ] [[package]] name = "jsonrpsee-client-transport" version = "0.10.1" -source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "765f7a36d5087f74e3b3b47805c2188fef8eb54afcb587b078d9f8ebfe9c7220" +dependencies = [ + "futures 0.3.21", + "http", + "jsonrpsee-core 0.10.1", + "jsonrpsee-types 0.10.1", + "pin-project 1.0.10", + "rustls-native-certs 0.6.1", + "soketto", + "thiserror", + "tokio", + "tokio-rustls 0.23.2", + "tokio-util 0.7.1", + "tracing", + "webpki-roots 0.22.2", +] + +[[package]] +name = "jsonrpsee-client-transport" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d4d7c4b01e336c32fc17034560291fa0690170aedace93ae746e9aa119a5b91" dependencies = [ "futures-util", "http", - "jsonrpsee-core", - "jsonrpsee-types", + "jsonrpsee-core 0.11.0", + "jsonrpsee-types 0.11.0", "pin-project 1.0.10", "rustls-native-certs 0.6.1", "soketto", @@ -3409,11 +3444,34 @@ dependencies = [ [[package]] name = "jsonrpsee-core" version = "0.10.1" -source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82ef77ecd20c2254d54f5da8c0738eacca61e6b6511268a8f2753e3148c6c706" +dependencies = [ + "anyhow", + "arrayvec 0.7.2", + "async-trait", + "beef", + "futures-channel", + "futures-util", + "hyper", + "jsonrpsee-types 0.10.1", + "rustc-hash", + "serde", + "serde_json", + "soketto", + "thiserror", + "tokio", + "tracing", +] + +[[package]] +name = "jsonrpsee-core" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8066473754794e7784c61808d25d60dfb68e1025a625792a6a1bc680d1ab700a" dependencies = [ "anyhow", "arrayvec 0.7.2", - "async-channel", "async-lock", "async-trait", "beef", @@ -3421,7 +3479,7 @@ dependencies = [ "futures-timer", "futures-util", "hyper", - "jsonrpsee-types", + "jsonrpsee-types 0.11.0", "parking_lot 0.12.0", "rand 0.8.5", "rustc-hash", @@ -3435,15 +3493,16 @@ dependencies = [ [[package]] name = "jsonrpsee-http-server" -version = "0.10.1" -source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee81d83b686966d6ba3b79f21bc71beedad9ec7e31c201fccff31ef0dd212e17" dependencies = [ "futures-channel", "futures-util", "globset", "hyper", - "jsonrpsee-core", - "jsonrpsee-types", + "jsonrpsee-core 0.11.0", + "jsonrpsee-types 0.11.0", "lazy_static", "serde_json", "tokio", @@ -3454,7 +3513,20 @@ dependencies = [ [[package]] name = "jsonrpsee-proc-macros" version = "0.10.1" -source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7291c72805bc7d413b457e50d8ef3e87aa554da65ecbbc278abb7dfc283e7f0" +dependencies = [ + "proc-macro-crate 1.1.3", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "jsonrpsee-proc-macros" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e7e19642c62b191afcd74fb8cab29f209f5fc24fbd2efed1ffd4393ef447428" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -3465,7 +3537,22 @@ dependencies = [ [[package]] name = "jsonrpsee-types" version = "0.10.1" -source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b6aa52f322cbf20c762407629b8300f39bcc0cf0619840d9252a2f65fd2dd9" +dependencies = [ + "anyhow", + "beef", + "serde", + "serde_json", + "thiserror", + "tracing", +] + +[[package]] +name = "jsonrpsee-types" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd42e08ae7f0de7b00319f723f7b06e2d461ab69bfa615a611fab5dec00b192e" dependencies = [ "anyhow", "beef", @@ -3478,22 +3565,35 @@ dependencies = [ [[package]] name = "jsonrpsee-ws-client" version = "0.10.1" -source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd66d18bab78d956df24dd0d2e41e4c00afbb818fda94a98264bdd12ce8506ac" dependencies = [ - "jsonrpsee-client-transport", - "jsonrpsee-core", - "jsonrpsee-types", + "jsonrpsee-client-transport 0.10.1", + "jsonrpsee-core 0.10.1", + "jsonrpsee-types 0.10.1", +] + +[[package]] +name = "jsonrpsee-ws-client" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c10011be7e04339bdc8b5a8e3542eb5aa1aa08465d5c897044ce00b03ea8535b" +dependencies = [ + "jsonrpsee-client-transport 0.11.0", + "jsonrpsee-core 0.11.0", + "jsonrpsee-types 0.11.0", ] [[package]] name = "jsonrpsee-ws-server" -version = "0.10.1" -source = "git+https://github.com/paritytech/jsonrpsee#20e6e5de40214e0b88e475d87bf14e465123eaba" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c87cb45124f148b8c6a977dcd86e38b1d95f6fdfa0e6f9e1ce94aa8c03ebab4b" dependencies = [ "futures-channel", "futures-util", - "jsonrpsee-core", - "jsonrpsee-types", + "jsonrpsee-core 0.11.0", + "jsonrpsee-types 0.11.0", "serde_json", "soketto", "tokio", @@ -5071,7 +5171,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5085,7 +5185,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -5101,7 +5201,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -5116,7 +5216,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5140,7 +5240,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5160,7 +5260,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-election-provider-support", "frame-support", @@ -5180,7 +5280,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5195,7 +5295,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "beefy-primitives", "frame-support", @@ -5211,7 +5311,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5234,7 +5334,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5316,7 +5416,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5335,7 +5435,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5352,7 +5452,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5368,7 +5468,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5391,7 +5491,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5404,7 +5504,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5422,7 +5522,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5437,7 +5537,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5460,7 +5560,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5476,7 +5576,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5496,7 +5596,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5513,7 +5613,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5530,7 +5630,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5548,7 +5648,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5565,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5580,7 +5680,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -5594,7 +5694,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -5611,7 +5711,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5634,7 +5734,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5650,7 +5750,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5665,7 +5765,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -5679,7 +5779,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5695,7 +5795,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -5716,7 +5816,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5732,7 +5832,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -5746,7 +5846,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5769,7 +5869,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -5780,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "log", "sp-arithmetic", @@ -5789,7 +5889,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -5803,7 +5903,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5821,7 +5921,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5840,7 +5940,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-support", "frame-system", @@ -5857,7 +5957,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5874,7 +5974,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5885,7 +5985,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5902,7 +6002,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -5918,7 +6018,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-benchmarking", "frame-support", @@ -7269,7 +7369,7 @@ version = "0.9.19" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", - "jsonrpsee", + "jsonrpsee 0.11.0", "pallet-mmr-rpc", "pallet-transaction-payment-rpc", "polkadot-primitives", @@ -8433,10 +8533,10 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "env_logger 0.9.0", - "jsonrpsee", + "jsonrpsee 0.10.1", "log", "parity-scale-codec", "serde", @@ -8805,7 +8905,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "log", "sp-core", @@ -8816,7 +8916,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "futures 0.3.21", @@ -8843,7 +8943,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8866,7 +8966,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8882,7 +8982,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8899,7 +8999,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -8910,7 +9010,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "chrono", "clap", @@ -8948,7 +9048,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "fnv", "futures 0.3.21", @@ -8976,7 +9076,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "hash-db", "kvdb", @@ -9001,7 +9101,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "futures 0.3.21", @@ -9025,7 +9125,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "fork-tree", @@ -9068,7 +9168,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9092,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9105,7 +9205,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "futures 0.3.21", @@ -9130,7 +9230,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "sc-client-api", "sp-authorship", @@ -9141,7 +9241,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "lazy_static", "lru 0.7.5", @@ -9168,7 +9268,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "environmental", "parity-scale-codec", @@ -9185,7 +9285,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "log", "parity-scale-codec", @@ -9201,7 +9301,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9219,7 +9319,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "ahash", "async-trait", @@ -9259,7 +9359,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -9283,7 +9383,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "ansi_term", "futures 0.3.21", @@ -9300,7 +9400,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "hex", @@ -9315,7 +9415,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "asynchronous-codec 0.5.0", @@ -9364,7 +9464,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "ahash", "futures 0.3.21", @@ -9381,7 +9481,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "bytes 1.1.0", "fnv", @@ -9409,7 +9509,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "libp2p", @@ -9422,7 +9522,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9431,7 +9531,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "hash-db", @@ -9462,7 +9562,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9488,7 +9588,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9505,7 +9605,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "directories", @@ -9570,7 +9670,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "log", "parity-scale-codec", @@ -9584,7 +9684,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -9605,7 +9705,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "libc", @@ -9624,7 +9724,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "chrono", "futures 0.3.21", @@ -9642,7 +9742,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "ansi_term", "atty", @@ -9673,7 +9773,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -9684,7 +9784,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9711,7 +9811,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "log", @@ -9724,7 +9824,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10237,7 +10337,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "hash-db", "log", @@ -10254,7 +10354,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "blake2 0.10.2", "proc-macro-crate 1.1.3", @@ -10266,7 +10366,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "scale-info", @@ -10279,7 +10379,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "integer-sqrt", "num-traits", @@ -10294,7 +10394,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "scale-info", @@ -10307,7 +10407,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "parity-scale-codec", @@ -10319,7 +10419,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "sp-api", @@ -10331,7 +10431,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "log", @@ -10349,7 +10449,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "futures 0.3.21", @@ -10368,7 +10468,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "merlin", @@ -10391,7 +10491,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "scale-info", @@ -10405,7 +10505,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -10417,7 +10517,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "base58", "bitflags", @@ -10463,7 +10563,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "blake2 0.10.2", "byteorder", @@ -10477,7 +10577,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "proc-macro2", "quote", @@ -10488,7 +10588,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10497,7 +10597,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "proc-macro2", "quote", @@ -10507,7 +10607,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "environmental", "parity-scale-codec", @@ -10518,7 +10618,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "finality-grandpa", "log", @@ -10536,7 +10636,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10550,7 +10650,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "hash-db", @@ -10575,7 +10675,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "lazy_static", "sp-core", @@ -10586,7 +10686,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "futures 0.3.21", @@ -10603,7 +10703,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "thiserror", "zstd", @@ -10612,7 +10712,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "log", "parity-scale-codec", @@ -10627,7 +10727,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "scale-info", @@ -10641,7 +10741,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "sp-api", "sp-core", @@ -10651,7 +10751,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "backtrace", "lazy_static", @@ -10661,7 +10761,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "rustc-hash", "serde", @@ -10671,7 +10771,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "either", "hash256-std-hasher", @@ -10693,7 +10793,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10710,7 +10810,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "Inflector", "proc-macro-crate 1.1.3", @@ -10722,7 +10822,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "serde", "serde_json", @@ -10731,7 +10831,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "scale-info", @@ -10745,7 +10845,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "scale-info", @@ -10756,7 +10856,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "hash-db", "log", @@ -10778,12 +10878,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10796,7 +10896,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "log", "sp-core", @@ -10809,7 +10909,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "futures-timer", @@ -10825,7 +10925,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "sp-std", @@ -10837,7 +10937,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "sp-api", "sp-runtime", @@ -10846,7 +10946,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "log", @@ -10862,7 +10962,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "hash-db", "memory-db", @@ -10878,7 +10978,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10895,7 +10995,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10906,7 +11006,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "impl-trait-for-tuples", "log", @@ -10952,7 +11052,7 @@ dependencies = [ "frame-election-provider-support", "frame-support", "frame-system", - "jsonrpsee", + "jsonrpsee 0.11.0", "kusama-runtime", "log", "pallet-balances", @@ -11098,7 +11198,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "platforms", ] @@ -11106,7 +11206,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -11128,7 +11228,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures-util", "hyper", @@ -11141,7 +11241,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -11164,7 +11264,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "async-trait", "futures 0.3.21", @@ -11190,7 +11290,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -11200,7 +11300,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -11211,7 +11311,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "ansi_term", "build-helper", @@ -11925,10 +12025,10 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7dd9798a5521343ae30ed3ac52212109febbab64" +source = "git+https://github.com/paritytech/substrate?branch=master#137e6c3ea4150a81f0dfee3a45189c2d988e6b85" dependencies = [ "clap", - "jsonrpsee", + "jsonrpsee 0.10.1", "log", "parity-scale-codec", "remote-externalities", diff --git a/Cargo.toml b/Cargo.toml index 938dcf678b23..cde748b49379 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -236,6 +236,3 @@ polkadot = { path = "/usr/bin/polkadot" } [package.metadata.spellcheck] config = "./scripts/gitlab/spellcheck.toml" - -[patch.crates-io] -jsonrpsee = { git = "https://github.com/paritytech/jsonrpsee" } diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index a846432d3b66..7530571b3a82 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -jsonrpsee = { version = "0.10.1", features = ["server"] } +jsonrpsee = { version = "0.11.0", features = ["server"] } polkadot-primitives = { path = "../primitives" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index e8e5974178a8..8d29d8623e82 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } clap = { version = "3.1", features = ["derive", "env"] } tracing-subscriber = { version = "0.3.10", features = ["env-filter"] } -jsonrpsee = { version = "0.10.1", features = ["ws-client", "macros"] } +jsonrpsee = { version = "0.11.0", features = ["ws-client", "macros"] } log = "0.4.16" paste = "1.0.7" serde = "1.0.136" From 5bfa8661c4459c4a60a577c354b3894957bc7134 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 21 Apr 2022 12:28:54 +0200 Subject: [PATCH 13/23] fix staking miner --- utils/staking-miner/src/monitor.rs | 15 --------------- utils/staking-miner/src/rpc.rs | 6 +++--- 2 files changed, 3 insertions(+), 18 deletions(-) diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index ffe4e0daf459..59e9555af631 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -139,12 +139,6 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { maybe_rp = subscription.next() => { match maybe_rp { Some(Ok(r)) => r, - // Custom `jsonrpsee` message sent by the server if the subscription was closed on the server side. - Some(Err(RpcError::SubscriptionClosed(reason))) => { - log::warn!(target: LOG_TARGET, "subscription to `subscribeNewHeads/subscribeFinalizedHeads` terminated: {:?}. Retrying..", reason); - subscription = heads_subscription().await?; - continue; - } Some(Err(e)) => { log::error!(target: LOG_TARGET, "subscription failed to decode Header {:?}, this is bug please file an issue", e); return Err(e.into()); @@ -312,15 +306,6 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! { while let Some(rp) = tx_subscription.next().await { let status_update = match rp { Ok(r) => r, - // Custom `jsonrpsee` message sent by the server if the subscription was closed on the server side. - Err(RpcError::SubscriptionClosed(reason)) => { - log::warn!( - target: LOG_TARGET, - "tx subscription closed by the server: {:?}; skip block: {}", - reason, at.number - ); - return; - }, Err(e) => { log::error!(target: LOG_TARGET, "subscription failed to decode TransactionStatus {:?}, this is a bug please file an issue", e); let _ = tx.send(e.into()); diff --git a/utils/staking-miner/src/rpc.rs b/utils/staking-miner/src/rpc.rs index f92d9bb94cdc..a4a366dc2a54 100644 --- a/utils/staking-miner/src/rpc.rs +++ b/utils/staking-miner/src/rpc.rs @@ -77,7 +77,7 @@ pub trait RpcApi { unsubscribe = "author_unwatchExtrinsic", item = TransactionStatus )] - fn watch_extrinsic(&self, bytes: &Bytes) -> RpcResult<()>; + fn watch_extrinsic(&self, bytes: &Bytes); /// New head subscription. #[subscription( @@ -85,7 +85,7 @@ pub trait RpcApi { unsubscribe = "chain_unsubscribeNewHeads", item = Header )] - fn subscribe_new_heads(&self) -> RpcResult<()>; + fn subscribe_new_heads(&self); /// Finalized head subscription. #[subscription( @@ -93,7 +93,7 @@ pub trait RpcApi { unsubscribe = "chain_unsubscribeFinalizedHeads", item = Header )] - fn subscribe_finalized_heads(&self) -> RpcResult<()>; + fn subscribe_finalized_heads(&self); } /// Wraps a shared web-socket JSON-RPC client that can be cloned. From 47e6cf4b54cd153f3638d0ddc63b3b13a7f93fac Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Fri, 6 May 2022 20:48:36 +0200 Subject: [PATCH 14/23] chore: update jsonrpsee v0.12 --- node/network/protocol/Cargo.toml | 2 +- node/service/Cargo.toml | 2 +- rpc/Cargo.toml | 2 +- runtime/parachains/Cargo.toml | 2 +- utils/staking-miner/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index 313e76a91010..e3c766bc58cc 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -21,4 +21,4 @@ rand = "0.8" derive_more = "0.99" [dev-dependencies] -rand_chacha = "0.3.1" \ No newline at end of file +rand_chacha = "0.3.1" diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 21bb1e5f1601..1e2c9c0cd398 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -199,4 +199,4 @@ runtime-metrics = [ "polkadot-runtime-parachains/runtime-metrics" ] -staging-client = ["polkadot-node-core-provisioner/staging-client"] \ No newline at end of file +staging-client = ["polkadot-node-core-provisioner/staging-client"] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 7530571b3a82..df916609d4a2 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -jsonrpsee = { version = "0.11.0", features = ["server"] } +jsonrpsee = { version = "0.12.0", features = ["server"] } polkadot-primitives = { path = "../primitives" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index d2385dbcf354..bf45d2487e38 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -109,4 +109,4 @@ try-runtime = [ "pallet-vesting/try-runtime", ] runtime-metrics = ["sp-tracing/with-tracing", "polkadot-runtime-metrics/runtime-metrics"] -vstaging = [] \ No newline at end of file +vstaging = [] diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index 390a50c25c95..15148f316607 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } clap = { version = "3.1", features = ["derive", "env"] } tracing-subscriber = { version = "0.3.10", features = ["env-filter"] } -jsonrpsee = { version = "0.11.0", features = ["ws-client", "macros"] } +jsonrpsee = { version = "0.12.0", features = ["ws-client", "macros"] } log = "0.4.16" paste = "1.0.7" serde = "1.0.137" From 1b57f20e407ac11bb16e18bc0699a8b6b8ad748c Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Sat, 7 May 2022 17:16:55 +0200 Subject: [PATCH 15/23] update companion --- Cargo.lock | 65 +++++++++++++++++++++++++++--------------------------- 1 file changed, 33 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 694adabe31aa..6f7350661e05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3369,16 +3369,17 @@ dependencies = [ [[package]] name = "jsonrpsee" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d02a921aa22006ed979c2e1c407fd21302ac6049e5b544634ec5ec41516363d" +checksum = "ad6f9ff3481f3069c92474b697c104502f7e9191d29b34bfa38ae9a19415f1cd" dependencies = [ - "jsonrpsee-core 0.11.0", + "jsonrpsee-core 0.12.0", "jsonrpsee-http-server", - "jsonrpsee-proc-macros 0.11.0", - "jsonrpsee-types 0.11.0", - "jsonrpsee-ws-client 0.11.0", + "jsonrpsee-proc-macros 0.12.0", + "jsonrpsee-types 0.12.0", + "jsonrpsee-ws-client 0.12.0", "jsonrpsee-ws-server", + "tracing", ] [[package]] @@ -3404,14 +3405,14 @@ dependencies = [ [[package]] name = "jsonrpsee-client-transport" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d4d7c4b01e336c32fc17034560291fa0690170aedace93ae746e9aa119a5b91" +checksum = "4358e100faf43b2f3b7b0ecf0ad4ce3e6275fe12fda8428dedda2979751dd184" dependencies = [ "futures-util", "http", - "jsonrpsee-core 0.11.0", - "jsonrpsee-types 0.11.0", + "jsonrpsee-core 0.12.0", + "jsonrpsee-types 0.12.0", "pin-project 1.0.10", "rustls-native-certs 0.6.1", "soketto", @@ -3448,9 +3449,9 @@ dependencies = [ [[package]] name = "jsonrpsee-core" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8066473754794e7784c61808d25d60dfb68e1025a625792a6a1bc680d1ab700a" +checksum = "8e1d26ab3868749d6f716345a5fbd3334a100c0709fe464bd9189ee9d78adcde" dependencies = [ "anyhow", "arrayvec 0.7.2", @@ -3461,7 +3462,7 @@ dependencies = [ "futures-timer", "futures-util", "hyper", - "jsonrpsee-types 0.11.0", + "jsonrpsee-types 0.12.0", "parking_lot 0.12.0", "rand 0.8.5", "rustc-hash", @@ -3475,16 +3476,16 @@ dependencies = [ [[package]] name = "jsonrpsee-http-server" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee81d83b686966d6ba3b79f21bc71beedad9ec7e31c201fccff31ef0dd212e17" +checksum = "ee87f19a7a01a55248fc4b4861d822331c4fd60151d99e7ac9c6771999132671" dependencies = [ "futures-channel", "futures-util", "globset", "hyper", - "jsonrpsee-core 0.11.0", - "jsonrpsee-types 0.11.0", + "jsonrpsee-core 0.12.0", + "jsonrpsee-types 0.12.0", "lazy_static", "serde_json", "tokio", @@ -3506,9 +3507,9 @@ dependencies = [ [[package]] name = "jsonrpsee-proc-macros" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e7e19642c62b191afcd74fb8cab29f209f5fc24fbd2efed1ffd4393ef447428" +checksum = "b75da57d54817577801c2f7a1b638610819dfd86f0470c21a2af81b06eb41ba6" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -3532,9 +3533,9 @@ dependencies = [ [[package]] name = "jsonrpsee-types" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd42e08ae7f0de7b00319f723f7b06e2d461ab69bfa615a611fab5dec00b192e" +checksum = "f5fe5a629443d17a30ff564881ba68881a710fd7eb02a538087b0bc51cb4962c" dependencies = [ "anyhow", "beef", @@ -3557,25 +3558,25 @@ dependencies = [ [[package]] name = "jsonrpsee-ws-client" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c10011be7e04339bdc8b5a8e3542eb5aa1aa08465d5c897044ce00b03ea8535b" +checksum = "ba31eb2b9a4b73d8833f53fe55e579516289f8b31adb6104b3dbc629755acf7d" dependencies = [ - "jsonrpsee-client-transport 0.11.0", - "jsonrpsee-core 0.11.0", - "jsonrpsee-types 0.11.0", + "jsonrpsee-client-transport 0.12.0", + "jsonrpsee-core 0.12.0", + "jsonrpsee-types 0.12.0", ] [[package]] name = "jsonrpsee-ws-server" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c87cb45124f148b8c6a977dcd86e38b1d95f6fdfa0e6f9e1ce94aa8c03ebab4b" +checksum = "179fe584af5c0145f922c581770d073c661a514ae6cdfa5b1a0bce41fdfdf646" dependencies = [ "futures-channel", "futures-util", - "jsonrpsee-core 0.11.0", - "jsonrpsee-types 0.11.0", + "jsonrpsee-core 0.12.0", + "jsonrpsee-types 0.12.0", "serde_json", "soketto", "tokio", @@ -7489,7 +7490,7 @@ version = "0.9.19" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", - "jsonrpsee 0.11.0", + "jsonrpsee 0.12.0", "pallet-mmr-rpc", "pallet-transaction-payment-rpc", "polkadot-primitives", @@ -11227,7 +11228,7 @@ dependencies = [ "frame-election-provider-support", "frame-support", "frame-system", - "jsonrpsee 0.11.0", + "jsonrpsee 0.12.0", "kusama-runtime", "log", "pallet-balances", From 2650665580895595955b1c53c7fefdbb7430dc1e Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Sat, 7 May 2022 17:35:50 +0200 Subject: [PATCH 16/23] update companion --- Cargo.lock | 346 ++++++++++++++++++++++++++--------------------------- 1 file changed, 173 insertions(+), 173 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6f7350661e05..9993e992abbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -433,7 +433,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "beefy-primitives", "fnv", @@ -467,7 +467,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -490,12 +490,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "scale-info", @@ -2149,7 +2149,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", ] @@ -2167,7 +2167,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -2189,7 +2189,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "Inflector", "chrono", @@ -2239,7 +2239,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -2250,7 +2250,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2266,7 +2266,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -2294,7 +2294,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "bitflags", "frame-metadata", @@ -2324,7 +2324,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2336,7 +2336,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.3", @@ -2348,7 +2348,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "proc-macro2", "quote", @@ -2358,7 +2358,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2381,7 +2381,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -2392,7 +2392,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "log", @@ -2409,7 +2409,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -2424,7 +2424,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "sp-api", @@ -2433,7 +2433,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "sp-api", @@ -2629,7 +2629,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "chrono", "frame-election-provider-support", @@ -5247,7 +5247,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5261,7 +5261,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -5277,7 +5277,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -5292,7 +5292,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5336,7 +5336,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-election-provider-support", "frame-support", @@ -5356,7 +5356,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5371,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "beefy-primitives", "frame-support", @@ -5387,7 +5387,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5410,7 +5410,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5492,7 +5492,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5511,7 +5511,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5528,7 +5528,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5544,7 +5544,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5567,7 +5567,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5580,7 +5580,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5598,7 +5598,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5613,7 +5613,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5636,7 +5636,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5652,7 +5652,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5672,7 +5672,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5689,7 +5689,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5706,7 +5706,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5724,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5741,7 +5741,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5756,7 +5756,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -5770,7 +5770,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -5785,7 +5785,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5804,7 +5804,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -5821,7 +5821,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5844,7 +5844,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5860,7 +5860,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5875,7 +5875,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5890,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5906,7 +5906,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -5927,7 +5927,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5943,7 +5943,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -5957,7 +5957,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5980,7 +5980,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -5991,7 +5991,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "log", "sp-arithmetic", @@ -6000,7 +6000,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -6014,7 +6014,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6032,7 +6032,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6051,7 +6051,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-support", "frame-system", @@ -6068,7 +6068,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -6085,7 +6085,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6096,7 +6096,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6113,7 +6113,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6129,7 +6129,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-benchmarking", "frame-support", @@ -8158,9 +8158,9 @@ dependencies = [ [[package]] name = "pretty_assertions" -version = "1.0.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0cfe1b2403f172ba0f234e500906ee0a3e493fb81092dac23ebefe129301cc" +checksum = "c89f989ac94207d048d92db058e4f6ec7342b0971fc58d1271ca148b799b3563" dependencies = [ "ansi_term", "ctor", @@ -8679,7 +8679,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "env_logger 0.9.0", "jsonrpsee 0.10.1", @@ -9057,7 +9057,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "log", "sp-core", @@ -9068,7 +9068,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "futures 0.3.21", @@ -9095,7 +9095,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9118,7 +9118,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9134,7 +9134,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9151,7 +9151,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -9162,7 +9162,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "chrono", "clap", @@ -9201,7 +9201,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "fnv", "futures 0.3.21", @@ -9229,7 +9229,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "hash-db", "kvdb", @@ -9254,7 +9254,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "futures 0.3.21", @@ -9278,7 +9278,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "fork-tree", @@ -9321,7 +9321,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9345,7 +9345,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9358,7 +9358,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "futures 0.3.21", @@ -9383,7 +9383,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "sc-client-api", "sp-authorship", @@ -9394,7 +9394,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "lazy_static", "lru 0.7.5", @@ -9421,7 +9421,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "environmental", "parity-scale-codec", @@ -9438,7 +9438,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "log", "parity-scale-codec", @@ -9453,7 +9453,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9471,7 +9471,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "ahash", "async-trait", @@ -9511,7 +9511,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -9535,7 +9535,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "ansi_term", "futures 0.3.21", @@ -9552,7 +9552,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "hex", @@ -9567,7 +9567,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "asynchronous-codec", @@ -9618,7 +9618,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "libp2p", @@ -9631,7 +9631,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "ahash", "futures 0.3.21", @@ -9648,7 +9648,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "bitflags", "either", @@ -9677,7 +9677,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "bytes 1.1.0", "fnv", @@ -9705,7 +9705,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "libp2p", @@ -9718,7 +9718,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9727,7 +9727,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "hash-db", @@ -9758,7 +9758,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9784,7 +9784,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9801,7 +9801,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "directories", @@ -9867,7 +9867,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "log", "parity-scale-codec", @@ -9881,7 +9881,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -9902,7 +9902,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "libc", @@ -9921,7 +9921,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "chrono", "futures 0.3.21", @@ -9939,7 +9939,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "ansi_term", "atty", @@ -9970,7 +9970,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -9981,7 +9981,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10008,7 +10008,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "log", @@ -10021,7 +10021,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10498,7 +10498,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "hash-db", "log", @@ -10515,7 +10515,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "blake2", "proc-macro-crate 1.1.3", @@ -10527,7 +10527,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "scale-info", @@ -10540,7 +10540,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "integer-sqrt", "num-traits", @@ -10555,7 +10555,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "scale-info", @@ -10568,7 +10568,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "parity-scale-codec", @@ -10580,7 +10580,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "sp-api", @@ -10592,7 +10592,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "log", @@ -10610,7 +10610,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "futures 0.3.21", @@ -10629,7 +10629,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "merlin", @@ -10652,7 +10652,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "scale-info", @@ -10666,7 +10666,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "scale-info", @@ -10679,7 +10679,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "base58", "bitflags", @@ -10725,7 +10725,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "blake2", "byteorder", @@ -10739,7 +10739,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "proc-macro2", "quote", @@ -10750,7 +10750,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10759,7 +10759,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "proc-macro2", "quote", @@ -10769,7 +10769,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "environmental", "parity-scale-codec", @@ -10780,7 +10780,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "finality-grandpa", "log", @@ -10798,7 +10798,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10812,7 +10812,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "hash-db", @@ -10837,7 +10837,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "lazy_static", "sp-core", @@ -10848,7 +10848,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "futures 0.3.21", @@ -10865,7 +10865,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "thiserror", "zstd", @@ -10874,7 +10874,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "log", "parity-scale-codec", @@ -10889,7 +10889,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "scale-info", @@ -10903,7 +10903,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "sp-api", "sp-core", @@ -10913,7 +10913,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "backtrace", "lazy_static", @@ -10923,7 +10923,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "rustc-hash", "serde", @@ -10933,7 +10933,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "either", "hash256-std-hasher", @@ -10955,7 +10955,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10972,7 +10972,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "Inflector", "proc-macro-crate 1.1.3", @@ -10984,7 +10984,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "log", "parity-scale-codec", @@ -10998,7 +10998,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "serde", "serde_json", @@ -11007,7 +11007,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "scale-info", @@ -11021,7 +11021,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "scale-info", @@ -11032,7 +11032,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "hash-db", "log", @@ -11054,12 +11054,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11072,7 +11072,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "log", "sp-core", @@ -11085,7 +11085,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "futures-timer", @@ -11101,7 +11101,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "sp-std", @@ -11113,7 +11113,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "sp-api", "sp-runtime", @@ -11122,7 +11122,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "log", @@ -11138,7 +11138,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "hash-db", "memory-db", @@ -11154,7 +11154,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11171,7 +11171,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11182,7 +11182,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "impl-trait-for-tuples", "log", @@ -11374,7 +11374,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "platforms", ] @@ -11382,7 +11382,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -11404,7 +11404,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures-util", "hyper", @@ -11417,7 +11417,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -11440,7 +11440,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "async-trait", "futures 0.3.21", @@ -11466,7 +11466,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -11476,7 +11476,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -11487,7 +11487,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "ansi_term", "build-helper", @@ -12224,7 +12224,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#43d8c8787ded25dab5db55af5ab65f5d5882a51b" +source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" dependencies = [ "clap", "jsonrpsee 0.10.1", From 5293ac2e10a5381cd6d3118beea4dc668dc406d8 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Sat, 7 May 2022 17:49:57 +0200 Subject: [PATCH 17/23] fix changes in substrate --- node/client/src/lib.rs | 10 ---------- node/test/service/src/lib.rs | 1 + 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/node/client/src/lib.rs b/node/client/src/lib.rs index 636e8f0bc8b7..a49cb142f528 100644 --- a/node/client/src/lib.rs +++ b/node/client/src/lib.rs @@ -381,16 +381,6 @@ impl sc_client_api::BlockBackend for Client { } } } - - fn requires_full_sync(&self) -> bool { - with_client! { - self, - client, - { - client.requires_full_sync() - } - } - } } impl sc_client_api::StorageProvider for Client { diff --git a/node/test/service/src/lib.rs b/node/test/service/src/lib.rs index e2c8278cb3ac..e268e375dce6 100644 --- a/node/test/service/src/lib.rs +++ b/node/test/service/src/lib.rs @@ -196,6 +196,7 @@ pub fn node_config( rpc_cors: None, rpc_methods: Default::default(), rpc_id_provider: None, + rpc_max_subs_per_conn: None, ws_max_out_buffer_capacity: None, prometheus_config: None, telemetry_endpoints: None, From 8796c6dca3c240cbf59fec41dd4d706323aac46e Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Sat, 7 May 2022 18:11:56 +0200 Subject: [PATCH 18/23] revert requires_full_sync removal --- node/client/src/lib.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/node/client/src/lib.rs b/node/client/src/lib.rs index a49cb142f528..636e8f0bc8b7 100644 --- a/node/client/src/lib.rs +++ b/node/client/src/lib.rs @@ -381,6 +381,16 @@ impl sc_client_api::BlockBackend for Client { } } } + + fn requires_full_sync(&self) -> bool { + with_client! { + self, + client, + { + client.requires_full_sync() + } + } + } } impl sc_client_api::StorageProvider for Client { From 3881cfee8e51e4a237dd30d3e84ceacca7c4caef Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Mon, 9 May 2022 16:28:14 +0200 Subject: [PATCH 19/23] fix: read WS address from polkadot output --- tests/benchmark_block_works.rs | 4 +++- tests/common.rs | 29 ++++++++++++++++++++++--- tests/purge_chain_works.rs | 12 ++++++++-- tests/running_the_node_and_interrupt.rs | 8 +++++-- 4 files changed, 45 insertions(+), 8 deletions(-) diff --git a/tests/benchmark_block_works.rs b/tests/benchmark_block_works.rs index 8a3b0de3e4d6..734ea153f57a 100644 --- a/tests/benchmark_block_works.rs +++ b/tests/benchmark_block_works.rs @@ -55,8 +55,10 @@ async fn build_chain(runtime: &str, base_path: &Path) -> Result<(), String> { .spawn() .unwrap(); + let (ws_url, _) = common::find_ws_url_from_output(cmd.stderr.take().unwrap()); + // Wait for the chain to produce one block. - let ok = common::wait_n_finalized_blocks(1, Duration::from_secs(60)).await; + let ok = common::wait_n_finalized_blocks(1, Duration::from_secs(60), &ws_url).await; // Send SIGINT to node. kill(Pid::from_raw(cmd.id().try_into().unwrap()), SIGINT).unwrap(); // Wait for the node to handle it and exit. diff --git a/tests/common.rs b/tests/common.rs index 7dd36f31d692..997d37530639 100644 --- a/tests/common.rs +++ b/tests/common.rs @@ -17,14 +17,13 @@ use polkadot_core_primitives::Block; use remote_externalities::rpc_api::get_finalized_head; use std::{ + io::{BufRead, BufReader, Read}, process::{Child, ExitStatus}, thread, time::Duration, }; use tokio::time::timeout; -static LOCALHOST_WS: &str = "ws://127.0.0.1:9944/"; - /// Wait for the given `child` the given amount of `secs`. /// /// Returns the `Some(exit status)` or `None` if the process did not finish in the given time. @@ -46,8 +45,9 @@ pub fn wait_for(child: &mut Child, secs: usize) -> Option { pub async fn wait_n_finalized_blocks( n: usize, timeout_duration: Duration, + url: &str, ) -> Result<(), tokio::time::error::Elapsed> { - timeout(timeout_duration, wait_n_finalized_blocks_from(n, LOCALHOST_WS)).await + timeout(timeout_duration, wait_n_finalized_blocks_from(n, url)).await } /// Wait for at least `n` blocks to be finalized from a specified node. @@ -65,3 +65,26 @@ async fn wait_n_finalized_blocks_from(n: usize, url: &str) { interval.tick().await; } } + +/// Read the WS address from the output. +pub fn find_ws_url_from_output(read: impl Read + Send) -> (String, String) { + let mut data = String::new(); + + let ws_url = BufReader::new(read) + .lines() + .find_map(|line| { + let line = line.expect("failed to obtain next line from stdout for port discovery"); + + data.push_str(&line); + + // does the line contain our port (we expect this specific output from substrate). + let sock_addr = match line.split_once("Running JSON-RPC WS server: addr=") { + None => return None, + Some((_, after)) => after.split_once(",").unwrap().0, + }; + + Some(format!("ws://{}", sock_addr)) + }) + .expect("We should get a WebSocket address"); + (ws_url, data) +} diff --git a/tests/purge_chain_works.rs b/tests/purge_chain_works.rs index 3e72a2e68e62..0b421acb28f2 100644 --- a/tests/purge_chain_works.rs +++ b/tests/purge_chain_works.rs @@ -39,8 +39,12 @@ async fn purge_chain_rocksdb_works() { .spawn() .unwrap(); + let (ws_url, _) = common::find_ws_url_from_output(cmd.stderr.take().unwrap()); + // Let it produce 1 block. - common::wait_n_finalized_blocks(1, Duration::from_secs(60)).await.unwrap(); + common::wait_n_finalized_blocks(1, Duration::from_secs(60), &ws_url) + .await + .unwrap(); // Send SIGINT to node. kill(Pid::from_raw(cmd.id().try_into().unwrap()), SIGINT).unwrap(); @@ -83,8 +87,12 @@ async fn purge_chain_paritydb_works() { .spawn() .unwrap(); + let (ws_url, _) = common::find_ws_url_from_output(cmd.stderr.take().unwrap()); + // Let it produce 1 block. - common::wait_n_finalized_blocks(1, Duration::from_secs(60)).await.unwrap(); + common::wait_n_finalized_blocks(1, Duration::from_secs(60), &ws_url) + .await + .unwrap(); // Send SIGINT to node. kill(Pid::from_raw(cmd.id().try_into().unwrap()), SIGINT).unwrap(); diff --git a/tests/running_the_node_and_interrupt.rs b/tests/running_the_node_and_interrupt.rs index f55e4e4c9eac..30ac2f967a74 100644 --- a/tests/running_the_node_and_interrupt.rs +++ b/tests/running_the_node_and_interrupt.rs @@ -41,15 +41,19 @@ async fn running_the_node_works_and_can_be_interrupted() { .spawn() .unwrap(); + let (ws_url, _) = common::find_ws_url_from_output(cmd.stderr.take().unwrap()); + // Let it produce three blocks. - common::wait_n_finalized_blocks(3, Duration::from_secs(60)).await.unwrap(); + common::wait_n_finalized_blocks(3, Duration::from_secs(60), &ws_url) + .await + .unwrap(); assert!(cmd.try_wait().unwrap().is_none(), "the process should still be running"); kill(Pid::from_raw(cmd.id().try_into().unwrap()), signal).unwrap(); assert_eq!( common::wait_for(&mut cmd, 30).map(|x| x.success()), Some(true), - "the pocess must exit gracefully after signal {}", + "the process must exit gracefully after signal {}", signal, ); } From 9c28fcbbac546661b33dddc6ed0c15318b77243e Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Mon, 9 May 2022 17:10:19 +0200 Subject: [PATCH 20/23] fit nits --- tests/benchmark_block_works.rs | 2 ++ tests/common.rs | 6 ++++++ tests/purge_chain_works.rs | 4 ++++ tests/running_the_node_and_interrupt.rs | 2 ++ 4 files changed, 14 insertions(+) diff --git a/tests/benchmark_block_works.rs b/tests/benchmark_block_works.rs index 734ea153f57a..a66b57727c81 100644 --- a/tests/benchmark_block_works.rs +++ b/tests/benchmark_block_works.rs @@ -47,6 +47,8 @@ async fn benchmark_block_works() { /// Builds a chain with one block for the given runtime and base path. async fn build_chain(runtime: &str, base_path: &Path) -> Result<(), String> { let mut cmd = Command::new(cargo_bin("polkadot")) + .stdout(process::Stdio::piped()) + .stderr(process::Stdio::piped()) .args(["--chain", &runtime, "--force-authoring", "--alice"]) .arg("-d") .arg(base_path) diff --git a/tests/common.rs b/tests/common.rs index 997d37530639..6c6450f6db68 100644 --- a/tests/common.rs +++ b/tests/common.rs @@ -67,6 +67,12 @@ async fn wait_n_finalized_blocks_from(n: usize, url: &str) { } /// Read the WS address from the output. +/// +/// This is hack to get the actual binded sockaddr because +/// polkadot assigns a random port if the specified port was already binded. +/// +/// You must call `Command::new("cmd").stdout(process::Stdio::piped()).stderr(process::Stdio::piped())` +/// for this to work. pub fn find_ws_url_from_output(read: impl Read + Send) -> (String, String) { let mut data = String::new(); diff --git a/tests/purge_chain_works.rs b/tests/purge_chain_works.rs index 0b421acb28f2..71be5a2b09a9 100644 --- a/tests/purge_chain_works.rs +++ b/tests/purge_chain_works.rs @@ -31,6 +31,8 @@ async fn purge_chain_rocksdb_works() { let tmpdir = tempdir().expect("could not create temp dir"); let mut cmd = Command::new(cargo_bin("polkadot")) + .stdout(process::Stdio::piped()) + .stderr(process::Stdio::piped()) .args(&["--dev", "-d"]) .arg(tmpdir.path()) .arg("--port") @@ -79,6 +81,8 @@ async fn purge_chain_paritydb_works() { let tmpdir = tempdir().expect("could not create temp dir"); let mut cmd = Command::new(cargo_bin("polkadot")) + .stdout(process::Stdio::piped()) + .stderr(process::Stdio::piped()) .args(&["--dev", "-d"]) .arg(tmpdir.path()) .arg("--database") diff --git a/tests/running_the_node_and_interrupt.rs b/tests/running_the_node_and_interrupt.rs index 30ac2f967a74..d203bb6bb31b 100644 --- a/tests/running_the_node_and_interrupt.rs +++ b/tests/running_the_node_and_interrupt.rs @@ -35,6 +35,8 @@ async fn running_the_node_works_and_can_be_interrupted() { let tmpdir = tempdir().expect("coult not create temp dir"); let mut cmd = Command::new(cargo_bin("polkadot")) + .stdout(process::Stdio::piped()) + .stderr(process::Stdio::piped()) .args(&["--dev", "-d"]) .arg(tmpdir.path()) .arg("--no-hardware-benchmarks") From 0816d8ea03f16098d2e63352a917fc769a8e5085 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Mon, 9 May 2022 17:38:01 +0200 Subject: [PATCH 21/23] fix more nits --- tests/benchmark_block_works.rs | 2 +- tests/purge_chain_works.rs | 5 ++++- tests/running_the_node_and_interrupt.rs | 5 ++++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/tests/benchmark_block_works.rs b/tests/benchmark_block_works.rs index a66b57727c81..b28814ba4d56 100644 --- a/tests/benchmark_block_works.rs +++ b/tests/benchmark_block_works.rs @@ -22,7 +22,7 @@ use nix::{ sys::signal::{kill, Signal::SIGINT}, unistd::Pid, }; -use std::{path::Path, process::Command, result::Result, time::Duration}; +use std::{path::Path, process::{self, Command}, result::Result, time::Duration}; use tempfile::tempdir; pub mod common; diff --git a/tests/purge_chain_works.rs b/tests/purge_chain_works.rs index 71be5a2b09a9..c69d8cc4a81a 100644 --- a/tests/purge_chain_works.rs +++ b/tests/purge_chain_works.rs @@ -15,7 +15,10 @@ // along with Substrate. If not, see . use assert_cmd::cargo::cargo_bin; -use std::{process::Command, time::Duration}; +use std::{ + process::{self, Command}, + time::Duration, +}; use tempfile::tempdir; pub mod common; diff --git a/tests/running_the_node_and_interrupt.rs b/tests/running_the_node_and_interrupt.rs index d203bb6bb31b..895db534bc5c 100644 --- a/tests/running_the_node_and_interrupt.rs +++ b/tests/running_the_node_and_interrupt.rs @@ -15,7 +15,10 @@ // along with Substrate. If not, see . use assert_cmd::cargo::cargo_bin; -use std::{process::Command, time::Duration}; +use std::{ + process::{self, Command}, + time::Duration, +}; use tempfile::tempdir; pub mod common; From 66113d3eefc8d218d9c546a0531e37b0b4859c7b Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Tue, 10 May 2022 08:52:35 +0000 Subject: [PATCH 22/23] update lockfile for {"substrate"} --- Cargo.lock | 1066 +++++++++++++++------------------------------------- 1 file changed, 306 insertions(+), 760 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ad0278125a4..cb7df47f3dd8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,7 +94,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -238,7 +238,7 @@ dependencies = [ "slab", "socket2", "waker-fn", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -273,7 +273,7 @@ dependencies = [ "libc", "once_cell", "signal-hook", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -343,7 +343,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0de5164e5edbf51c45fb8c2d9664ae1c095cce1b265ecf7569093c0d66ef690" dependencies = [ - "bytes 1.1.0", + "bytes", "futures-sink", "futures-util", "memchr", @@ -373,7 +373,7 @@ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ "hermit-abi", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -433,7 +433,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "beefy-primitives", "fnv", @@ -467,15 +467,12 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "beefy-gadget", "beefy-primitives", "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", - "jsonrpc-pubsub", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -490,12 +487,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "scale-info", @@ -901,16 +898,6 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" -[[package]] -name = "bytes" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" -dependencies = [ - "byteorder", - "iovec", -] - [[package]] name = "bytes" version = "1.1.0" @@ -1036,7 +1023,7 @@ dependencies = [ "num-integer", "num-traits", "time", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -1651,7 +1638,7 @@ checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901" dependencies = [ "libc", "redox_users 0.3.5", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -1662,7 +1649,7 @@ checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780" dependencies = [ "libc", "redox_users 0.4.0", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -1673,7 +1660,7 @@ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" dependencies = [ "libc", "redox_users 0.4.0", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -1912,7 +1899,7 @@ checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" dependencies = [ "errno-dragonfly", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2014,7 +2001,7 @@ checksum = "f5aa1e3ae159e592ad222dc90c5acbad632b527779ba88486abe92782ab268bd" dependencies = [ "expander 0.0.4", "indexmap", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -2091,7 +2078,7 @@ dependencies = [ "cc", "lazy_static", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2149,7 +2136,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", ] @@ -2161,13 +2148,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" dependencies = [ "matches", - "percent-encoding 2.1.0", + "percent-encoding", ] [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -2189,7 +2176,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "Inflector", "chrono", @@ -2239,9 +2226,9 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -2250,7 +2237,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2266,7 +2253,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -2294,7 +2281,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "bitflags", "frame-metadata", @@ -2324,7 +2311,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2336,10 +2323,10 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support-procedural-tools-derive", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -2348,7 +2335,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "proc-macro2", "quote", @@ -2358,7 +2345,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2381,7 +2368,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -2392,7 +2379,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "log", @@ -2409,7 +2396,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -2424,7 +2411,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "sp-api", @@ -2433,7 +2420,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "sp-api", @@ -2456,7 +2443,7 @@ dependencies = [ "lazy_static", "libc", "libloading 0.5.2", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2466,7 +2453,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2475,22 +2462,6 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394" -[[package]] -name = "fuchsia-zircon" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -dependencies = [ - "bitflags", - "fuchsia-zircon-sys", -] - -[[package]] -name = "fuchsia-zircon-sys" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" - [[package]] name = "funty" version = "2.0.0" @@ -2613,7 +2584,6 @@ version = "0.3.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" dependencies = [ - "futures 0.1.31", "futures-channel", "futures-core", "futures-io", @@ -2629,7 +2599,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "chrono", "frame-election-provider-support", @@ -2715,7 +2685,7 @@ dependencies = [ "libc", "libgit2-sys", "log", - "url 2.2.2", + "url", ] [[package]] @@ -2767,7 +2737,7 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9f1f717ddc7b2ba36df7e871fd88db79326551d3d6f1fc406fbfd28b582ff8e" dependencies = [ - "bytes 1.1.0", + "bytes", "fnv", "futures-core", "futures-sink", @@ -2919,7 +2889,7 @@ checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" dependencies = [ "libc", "match_cfg", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2928,7 +2898,7 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b" dependencies = [ - "bytes 1.1.0", + "bytes", "fnv", "itoa 0.4.8", ] @@ -2939,7 +2909,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6" dependencies = [ - "bytes 1.1.0", + "bytes", "http", "pin-project-lite 0.2.7", ] @@ -2977,7 +2947,7 @@ version = "0.14.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2" dependencies = [ - "bytes 1.1.0", + "bytes", "futures-channel", "futures-core", "futures-util", @@ -3018,24 +2988,13 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ - "bytes 1.1.0", + "bytes", "hyper", "native-tls", "tokio", "tokio-native-tls", ] -[[package]] -name = "idna" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" -dependencies = [ - "matches", - "unicode-bidi", - "unicode-normalization", -] - [[package]] name = "idna" version = "0.2.3" @@ -3054,7 +3013,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cbc0fa01ffc752e9dbc72818cdb072cd028b86be5e09dd04c5a643704fe101a9" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -3151,15 +3110,6 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec58677acfea8a15352d42fc87d11d63596ade9239e0a7c9352914417515dbe6" -[[package]] -name = "iovec" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -dependencies = [ - "libc", -] - [[package]] name = "ip_network" version = "0.4.1" @@ -3174,7 +3124,7 @@ checksum = "723519edce41262b05d4143ceb95050e4c614f483e78e9fd9e39a8275a84ad98" dependencies = [ "socket2", "widestring", - "winapi 0.3.9", + "winapi", "winreg 0.7.0", ] @@ -3223,186 +3173,21 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "jsonrpc-client-transports" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2b99d4207e2a04fb4581746903c2bb7eb376f88de9c699d0f3e10feeac0cd3a" -dependencies = [ - "derive_more", - "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-pubsub", - "log", - "serde", - "serde_json", - "url 1.7.2", -] - -[[package]] -name = "jsonrpc-core" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb" -dependencies = [ - "futures 0.3.21", - "futures-executor", - "futures-util", - "log", - "serde", - "serde_derive", - "serde_json", -] - -[[package]] -name = "jsonrpc-core-client" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b51da17abecbdab3e3d4f26b01c5ec075e88d3abe3ab3b05dc9aa69392764ec0" -dependencies = [ - "futures 0.3.21", - "jsonrpc-client-transports", -] - -[[package]] -name = "jsonrpc-derive" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b939a78fa820cdfcb7ee7484466746a7377760970f6f9c6fe19f9edcc8a38d2" -dependencies = [ - "proc-macro-crate 0.1.5", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "jsonrpc-http-server" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1dea6e07251d9ce6a552abfb5d7ad6bc290a4596c8dcc3d795fae2bbdc1f3ff" -dependencies = [ - "futures 0.3.21", - "hyper", - "jsonrpc-core", - "jsonrpc-server-utils", - "log", - "net2", - "parking_lot 0.11.2", - "unicase", -] - -[[package]] -name = "jsonrpc-ipc-server" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "382bb0206323ca7cda3dcd7e245cea86d37d02457a02a975e3378fb149a48845" -dependencies = [ - "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-server-utils", - "log", - "parity-tokio-ipc", - "parking_lot 0.11.2", - "tower-service", -] - -[[package]] -name = "jsonrpc-pubsub" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "240f87695e6c6f62fb37f05c02c04953cf68d6408b8c1c89de85c7a0125b1011" -dependencies = [ - "futures 0.3.21", - "jsonrpc-core", - "lazy_static", - "log", - "parking_lot 0.11.2", - "rand 0.7.3", - "serde", -] - -[[package]] -name = "jsonrpc-server-utils" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4fdea130485b572c39a460d50888beb00afb3e35de23ccd7fad8ff19f0e0d4" -dependencies = [ - "bytes 1.1.0", - "futures 0.3.21", - "globset", - "jsonrpc-core", - "lazy_static", - "log", - "tokio", - "tokio-stream", - "tokio-util 0.6.9", - "unicase", -] - -[[package]] -name = "jsonrpc-ws-server" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f892c7d766369475ab7b0669f417906302d7c0fb521285c0a0c92e52e7c8e946" -dependencies = [ - "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-server-utils", - "log", - "parity-ws", - "parking_lot 0.11.2", - "slab", -] - -[[package]] -name = "jsonrpsee" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91dc760c341fa81173f9a434931aaf32baad5552b0230cc6c93e8fb7eaad4c19" -dependencies = [ - "jsonrpsee-core 0.10.1", - "jsonrpsee-proc-macros 0.10.1", - "jsonrpsee-types 0.10.1", - "jsonrpsee-ws-client 0.10.1", -] - [[package]] name = "jsonrpsee" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad6f9ff3481f3069c92474b697c104502f7e9191d29b34bfa38ae9a19415f1cd" dependencies = [ - "jsonrpsee-core 0.12.0", + "jsonrpsee-core", "jsonrpsee-http-server", - "jsonrpsee-proc-macros 0.12.0", - "jsonrpsee-types 0.12.0", - "jsonrpsee-ws-client 0.12.0", + "jsonrpsee-proc-macros", + "jsonrpsee-types", + "jsonrpsee-ws-client", "jsonrpsee-ws-server", "tracing", ] -[[package]] -name = "jsonrpsee-client-transport" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "765f7a36d5087f74e3b3b47805c2188fef8eb54afcb587b078d9f8ebfe9c7220" -dependencies = [ - "futures 0.3.21", - "http", - "jsonrpsee-core 0.10.1", - "jsonrpsee-types 0.10.1", - "pin-project 1.0.10", - "rustls-native-certs 0.6.1", - "soketto", - "thiserror", - "tokio", - "tokio-rustls 0.23.2", - "tokio-util 0.7.1", - "tracing", - "webpki-roots", -] - [[package]] name = "jsonrpsee-client-transport" version = "0.12.0" @@ -3411,8 +3196,8 @@ checksum = "4358e100faf43b2f3b7b0ecf0ad4ce3e6275fe12fda8428dedda2979751dd184" dependencies = [ "futures-util", "http", - "jsonrpsee-core 0.12.0", - "jsonrpsee-types 0.12.0", + "jsonrpsee-core", + "jsonrpsee-types", "pin-project 1.0.10", "rustls-native-certs 0.6.1", "soketto", @@ -3424,29 +3209,6 @@ dependencies = [ "webpki-roots", ] -[[package]] -name = "jsonrpsee-core" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82ef77ecd20c2254d54f5da8c0738eacca61e6b6511268a8f2753e3148c6c706" -dependencies = [ - "anyhow", - "arrayvec 0.7.2", - "async-trait", - "beef", - "futures-channel", - "futures-util", - "hyper", - "jsonrpsee-types 0.10.1", - "rustc-hash", - "serde", - "serde_json", - "soketto", - "thiserror", - "tokio", - "tracing", -] - [[package]] name = "jsonrpsee-core" version = "0.12.0" @@ -3462,7 +3224,7 @@ dependencies = [ "futures-timer", "futures-util", "hyper", - "jsonrpsee-types 0.12.0", + "jsonrpsee-types", "parking_lot 0.12.0", "rand 0.8.5", "rustc-hash", @@ -3484,8 +3246,8 @@ dependencies = [ "futures-util", "globset", "hyper", - "jsonrpsee-core 0.12.0", - "jsonrpsee-types 0.12.0", + "jsonrpsee-core", + "jsonrpsee-types", "lazy_static", "serde_json", "tokio", @@ -3493,44 +3255,18 @@ dependencies = [ "unicase", ] -[[package]] -name = "jsonrpsee-proc-macros" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7291c72805bc7d413b457e50d8ef3e87aa554da65ecbbc278abb7dfc283e7f0" -dependencies = [ - "proc-macro-crate 1.1.3", - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "jsonrpsee-proc-macros" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b75da57d54817577801c2f7a1b638610819dfd86f0470c21a2af81b06eb41ba6" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", ] -[[package]] -name = "jsonrpsee-types" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38b6aa52f322cbf20c762407629b8300f39bcc0cf0619840d9252a2f65fd2dd9" -dependencies = [ - "anyhow", - "beef", - "serde", - "serde_json", - "thiserror", - "tracing", -] - [[package]] name = "jsonrpsee-types" version = "0.12.0" @@ -3545,26 +3281,15 @@ dependencies = [ "tracing", ] -[[package]] -name = "jsonrpsee-ws-client" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd66d18bab78d956df24dd0d2e41e4c00afbb818fda94a98264bdd12ce8506ac" -dependencies = [ - "jsonrpsee-client-transport 0.10.1", - "jsonrpsee-core 0.10.1", - "jsonrpsee-types 0.10.1", -] - [[package]] name = "jsonrpsee-ws-client" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba31eb2b9a4b73d8833f53fe55e579516289f8b31adb6104b3dbc629755acf7d" dependencies = [ - "jsonrpsee-client-transport 0.12.0", - "jsonrpsee-core 0.12.0", - "jsonrpsee-types 0.12.0", + "jsonrpsee-client-transport", + "jsonrpsee-core", + "jsonrpsee-types", ] [[package]] @@ -3575,8 +3300,8 @@ checksum = "179fe584af5c0145f922c581770d073c661a514ae6cdfa5b1a0bce41fdfdf646" dependencies = [ "futures-channel", "futures-util", - "jsonrpsee-core 0.12.0", - "jsonrpsee-types 0.12.0", + "jsonrpsee-core", + "jsonrpsee-types", "serde_json", "soketto", "tokio", @@ -3602,16 +3327,6 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" -[[package]] -name = "kernel32-sys" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] - [[package]] name = "kusama-runtime" version = "0.9.19" @@ -3812,7 +3527,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" dependencies = [ "cc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -3822,7 +3537,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "afe203d669ec979b7128619bae5a63b7b42e9203c1b29146079ee05e2f604b52" dependencies = [ "cfg-if 1.0.0", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -3838,7 +3553,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "475ce2ac4a9727e53a519f6ee05b38abfcba8f0d39c4d24f103d184e36fd5b0f" dependencies = [ "atomic", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "futures-timer", "getrandom 0.2.3", @@ -3982,7 +3697,7 @@ dependencies = [ "asynchronous-codec", "base64", "byteorder", - "bytes 1.1.0", + "bytes", "fnv", "futures 0.3.21", "hex_fmt", @@ -4026,7 +3741,7 @@ checksum = "564e6bd64d177446399ed835b9451a8825b07929d6daa6a94e6405592974725e" dependencies = [ "arrayvec 0.5.2", "asynchronous-codec", - "bytes 1.1.0", + "bytes", "either", "fnv", "futures 0.3.21", @@ -4090,7 +3805,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "442eb0c9fff0bf22a34f015724b4143ce01877e079ed0963c722d94c07c72160" dependencies = [ "asynchronous-codec", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "libp2p-core", "log", @@ -4107,7 +3822,7 @@ version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9dd7e0c94051cda67123be68cf6b65211ba3dde7277be9068412de3e7ffd63ef" dependencies = [ - "bytes 1.1.0", + "bytes", "curve25519-dalek 3.2.0", "futures 0.3.21", "lazy_static", @@ -4146,7 +3861,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "962c0fb0e7212fb96a69b87f2d09bcefd317935239bdc79cda900e7a8897a3fe" dependencies = [ "asynchronous-codec", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "libp2p-core", "log", @@ -4177,7 +3892,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3aa754cb7bccef51ebc3c458c6bbcef89d83b578a9925438389be841527d408f" dependencies = [ "asynchronous-codec", - "bytes 1.1.0", + "bytes", "either", "futures 0.3.21", "futures-timer", @@ -4226,7 +3941,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5e6a6fc6c9ad95661f46989473b34bd2993d14a4de497ff3b2668a910d4b869" dependencies = [ "async-trait", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "instant", "libp2p-core", @@ -4324,7 +4039,7 @@ dependencies = [ "quicksink", "rw-stream-sink", "soketto", - "url 2.2.2", + "url", "webpki-roots", ] @@ -4581,7 +4296,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -4700,25 +4415,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "mio" -version = "0.6.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" -dependencies = [ - "cfg-if 0.1.10", - "fuchsia-zircon", - "fuchsia-zircon-sys", - "iovec", - "kernel32-sys", - "libc", - "log", - "miow 0.2.2", - "net2", - "slab", - "winapi 0.2.8", -] - [[package]] name = "mio" version = "0.8.2" @@ -4727,34 +4423,10 @@ checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9" dependencies = [ "libc", "log", - "miow 0.3.7", + "miow", "ntapi", "wasi 0.11.0+wasi-snapshot-preview1", - "winapi 0.3.9", -] - -[[package]] -name = "mio-extras" -version = "2.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" -dependencies = [ - "lazycell", - "log", - "mio 0.6.23", - "slab", -] - -[[package]] -name = "miow" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" -dependencies = [ - "kernel32-sys", - "net2", - "winapi 0.2.8", - "ws2_32-sys", + "winapi", ] [[package]] @@ -4763,7 +4435,7 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -4783,11 +4455,11 @@ dependencies = [ "byteorder", "data-encoding", "multihash", - "percent-encoding 2.1.0", + "percent-encoding", "serde", "static_assertions", "unsigned-varint", - "url 2.2.2", + "url", ] [[package]] @@ -4824,7 +4496,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc076939022111618a5026d3be019fd8b366e76314538ff9a1b59ffbcbf98bcd" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro-error", "proc-macro2", "quote", @@ -4844,7 +4516,7 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "363a84be6453a70e63513660f4894ef815daf88e3356bffcda9ca27d810ce83b" dependencies = [ - "bytes 1.1.0", + "bytes", "futures 0.3.21", "log", "pin-project 1.0.10", @@ -4914,17 +4586,6 @@ dependencies = [ "tempfile", ] -[[package]] -name = "net2" -version = "0.2.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae" -dependencies = [ - "cfg-if 0.1.10", - "libc", - "winapi 0.3.9", -] - [[package]] name = "netlink-packet-core" version = "0.4.2" @@ -4969,7 +4630,7 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef8785b8141e8432aa45fceb922a7e876d7da3fad37fa7e7ec702ace3aa0826b" dependencies = [ - "bytes 1.1.0", + "bytes", "futures 0.3.21", "log", "netlink-packet-core", @@ -4984,7 +4645,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e4c9f9547a08241bee7b6558b9b98e1f290d187de8b7cfca2bbb4937bcaa8f8" dependencies = [ "async-io", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "libc", "log", @@ -5057,7 +4718,7 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -5226,7 +4887,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -5247,7 +4908,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5261,7 +4922,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -5277,7 +4938,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -5292,7 +4953,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5316,7 +4977,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5336,7 +4997,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-election-provider-support", "frame-support", @@ -5350,13 +5011,12 @@ dependencies = [ "sp-std", "sp-storage", "sp-tracing", - "tokio", ] [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5371,7 +5031,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "beefy-primitives", "frame-support", @@ -5387,7 +5047,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5410,7 +5070,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5492,7 +5152,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5511,7 +5171,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5528,7 +5188,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5544,7 +5204,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5567,7 +5227,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5580,7 +5240,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5598,7 +5258,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5613,7 +5273,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5636,7 +5296,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5652,7 +5312,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5672,7 +5332,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5689,7 +5349,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5706,7 +5366,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5724,11 +5384,9 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "jsonrpsee", "parity-scale-codec", "serde", "sp-api", @@ -5741,7 +5399,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5756,7 +5414,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -5770,7 +5428,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -5785,7 +5443,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5804,7 +5462,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -5821,7 +5479,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5844,7 +5502,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5860,7 +5518,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5875,7 +5533,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5890,7 +5548,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5906,7 +5564,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -5927,7 +5585,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -5943,7 +5601,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -5957,7 +5615,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5980,9 +5638,9 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -5991,7 +5649,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "log", "sp-arithmetic", @@ -6000,7 +5658,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -6014,7 +5672,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -6032,7 +5690,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -6051,7 +5709,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-support", "frame-system", @@ -6068,11 +5726,9 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", "sp-api", @@ -6085,7 +5741,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6096,7 +5752,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -6113,7 +5769,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -6129,7 +5785,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-benchmarking", "frame-support", @@ -6227,7 +5883,7 @@ version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c45ed1f39709f5a89338fab50e59816b2e8815f5bb58276e7ddf9afd495f73f8" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -6239,20 +5895,6 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" -[[package]] -name = "parity-tokio-ipc" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9981e32fb75e004cc148f5fb70342f393830e0a4aa62e3cc93b50976218d42b6" -dependencies = [ - "futures 0.3.21", - "libc", - "log", - "rand 0.7.3", - "tokio", - "winapi 0.3.9", -] - [[package]] name = "parity-util-mem" version = "0.11.0" @@ -6268,7 +5910,7 @@ dependencies = [ "smallvec", "tikv-jemalloc-ctl", "tikv-jemallocator", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -6297,24 +5939,6 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be5e13c266502aadf83426d87d81a0f5d1ef45b8027f5a471c360abfe4bfae92" -[[package]] -name = "parity-ws" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5983d3929ad50f12c3eb9a6743f19d691866ecd44da74c0a3308c3f8a56df0c6" -dependencies = [ - "byteorder", - "bytes 0.4.12", - "httparse", - "log", - "mio 0.6.23", - "mio-extras", - "rand 0.7.3", - "sha-1 0.8.2", - "slab", - "url 2.2.2", -] - [[package]] name = "parking" version = "2.0.0" @@ -6353,7 +5977,7 @@ dependencies = [ "libc", "redox_syscall 0.2.10", "smallvec", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -6399,12 +6023,6 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" -[[package]] -name = "percent-encoding" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" - [[package]] name = "percent-encoding" version = "2.1.0" @@ -6839,7 +6457,7 @@ dependencies = [ "always-assert", "assert_matches", "async-trait", - "bytes 1.1.0", + "bytes", "futures 0.3.21", "futures-timer", "parity-scale-codec", @@ -7408,7 +7026,7 @@ version = "0.9.19" dependencies = [ "assert_matches", "expander 0.0.6", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -7490,7 +7108,7 @@ version = "0.9.19" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", - "jsonrpsee 0.12.0", + "jsonrpsee", "pallet-mmr-rpc", "pallet-transaction-payment-rpc", "polkadot-primitives", @@ -8077,7 +7695,7 @@ dependencies = [ "libc", "log", "wepoll-ffi", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -8195,15 +7813,6 @@ dependencies = [ "uint", ] -[[package]] -name = "proc-macro-crate" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" -dependencies = [ - "toml", -] - [[package]] name = "proc-macro-crate" version = "1.1.3" @@ -8301,7 +7910,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001" dependencies = [ - "bytes 1.1.0", + "bytes", "prost-derive", ] @@ -8311,7 +7920,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5" dependencies = [ - "bytes 1.1.0", + "bytes", "heck 0.3.3", "itertools", "lazy_static", @@ -8344,7 +7953,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a" dependencies = [ - "bytes 1.1.0", + "bytes", "prost", ] @@ -8654,7 +8263,7 @@ dependencies = [ "bitflags", "libc", "mach", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -8679,10 +8288,10 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "env_logger 0.9.0", - "jsonrpsee 0.10.1", + "jsonrpsee", "log", "parity-scale-codec", "serde", @@ -8699,7 +8308,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -8709,7 +8318,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb" dependencies = [ "base64", - "bytes 1.1.0", + "bytes", "encoding_rs", "futures-core", "futures-util", @@ -8724,14 +8333,14 @@ dependencies = [ "log", "mime", "native-tls", - "percent-encoding 2.1.0", + "percent-encoding", "pin-project-lite 0.2.7", "serde", "serde_json", "serde_urlencoded", "tokio", "tokio-native-tls", - "url 2.2.2", + "url", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -8777,7 +8386,7 @@ dependencies = [ "spin", "untrusted", "web-sys", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -8884,7 +8493,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -8952,7 +8561,7 @@ dependencies = [ "io-lifetimes", "libc", "linux-raw-sys", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -9057,7 +8666,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "log", "sp-core", @@ -9068,7 +8677,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "futures 0.3.21", @@ -9095,7 +8704,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9118,7 +8727,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9134,7 +8743,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9151,9 +8760,9 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -9162,7 +8771,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "chrono", "clap", @@ -9201,7 +8810,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "fnv", "futures 0.3.21", @@ -9229,7 +8838,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "hash-db", "kvdb", @@ -9254,7 +8863,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "futures 0.3.21", @@ -9278,7 +8887,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "fork-tree", @@ -9321,12 +8930,10 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "jsonrpsee", "sc-consensus-babe", "sc-consensus-epochs", "sc-rpc-api", @@ -9345,7 +8952,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9358,7 +8965,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "futures 0.3.21", @@ -9383,7 +8990,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "sc-client-api", "sp-authorship", @@ -9394,7 +9001,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "lazy_static", "lru 0.7.5", @@ -9421,7 +9028,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "environmental", "parity-scale-codec", @@ -9438,7 +9045,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "log", "parity-scale-codec", @@ -9453,7 +9060,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9471,7 +9078,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "ahash", "async-trait", @@ -9511,14 +9118,11 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "finality-grandpa", "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", - "jsonrpc-pubsub", + "jsonrpsee", "log", "parity-scale-codec", "sc-client-api", @@ -9535,7 +9139,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "ansi_term", "futures 0.3.21", @@ -9552,7 +9156,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "hex", @@ -9567,12 +9171,12 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "asynchronous-codec", "bitflags", - "bytes 1.1.0", + "bytes", "cid", "either", "fnv", @@ -9618,7 +9222,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "libp2p", @@ -9631,7 +9235,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "ahash", "futures 0.3.21", @@ -9648,7 +9252,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "bitflags", "either", @@ -9677,9 +9281,9 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ - "bytes 1.1.0", + "bytes", "fnv", "futures 0.3.21", "futures-timer", @@ -9705,7 +9309,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "libp2p", @@ -9718,7 +9322,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9727,12 +9331,11 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "hash-db", - "jsonrpc-core", - "jsonrpc-pubsub", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -9758,13 +9361,10 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", - "jsonrpc-pubsub", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -9784,14 +9384,10 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-http-server", - "jsonrpc-ipc-server", - "jsonrpc-pubsub", - "jsonrpc-ws-server", + "jsonrpsee", "log", "serde_json", "substrate-prometheus-endpoint", @@ -9801,7 +9397,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "directories", @@ -9809,8 +9405,7 @@ dependencies = [ "futures 0.3.21", "futures-timer", "hash-db", - "jsonrpc-core", - "jsonrpc-pubsub", + "jsonrpsee", "log", "parity-scale-codec", "parity-util-mem", @@ -9867,7 +9462,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "log", "parity-scale-codec", @@ -9881,11 +9476,9 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "jsonrpsee", "parity-scale-codec", "sc-chain-spec", "sc-client-api", @@ -9902,7 +9495,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "libc", @@ -9921,7 +9514,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "chrono", "futures 0.3.21", @@ -9939,7 +9532,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "ansi_term", "atty", @@ -9970,9 +9563,9 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -9981,7 +9574,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10008,7 +9601,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "log", @@ -10021,7 +9614,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10051,7 +9644,7 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4260c630e8a8a33429d1688eff2f163f24c65a4e1b1578ef6b565061336e4b6f" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -10064,7 +9657,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" dependencies = [ "lazy_static", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -10476,7 +10069,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -10486,7 +10079,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" dependencies = [ "base64", - "bytes 1.1.0", + "bytes", "flate2", "futures 0.3.21", "httparse", @@ -10498,7 +10091,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "hash-db", "log", @@ -10515,10 +10108,10 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "blake2", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -10527,7 +10120,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "scale-info", @@ -10540,7 +10133,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "integer-sqrt", "num-traits", @@ -10555,7 +10148,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "scale-info", @@ -10568,7 +10161,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "parity-scale-codec", @@ -10580,7 +10173,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "sp-api", @@ -10592,7 +10185,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "log", @@ -10610,7 +10203,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "futures 0.3.21", @@ -10629,7 +10222,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "merlin", @@ -10652,7 +10245,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "scale-info", @@ -10666,7 +10259,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "scale-info", @@ -10679,7 +10272,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "base58", "bitflags", @@ -10725,7 +10318,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "blake2", "byteorder", @@ -10739,7 +10332,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "proc-macro2", "quote", @@ -10750,7 +10343,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10759,7 +10352,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "proc-macro2", "quote", @@ -10769,7 +10362,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "environmental", "parity-scale-codec", @@ -10780,7 +10373,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "finality-grandpa", "log", @@ -10798,7 +10391,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10812,7 +10405,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "hash-db", @@ -10837,7 +10430,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "lazy_static", "sp-core", @@ -10848,7 +10441,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "futures 0.3.21", @@ -10865,7 +10458,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "thiserror", "zstd", @@ -10874,7 +10467,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "log", "parity-scale-codec", @@ -10889,7 +10482,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "scale-info", @@ -10903,7 +10496,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "sp-api", "sp-core", @@ -10913,7 +10506,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "backtrace", "lazy_static", @@ -10923,7 +10516,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "rustc-hash", "serde", @@ -10933,7 +10526,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "either", "hash256-std-hasher", @@ -10955,7 +10548,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10972,10 +10565,10 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "Inflector", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -10984,7 +10577,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "log", "parity-scale-codec", @@ -10998,7 +10591,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "serde", "serde_json", @@ -11007,7 +10600,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "scale-info", @@ -11021,7 +10614,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "scale-info", @@ -11032,7 +10625,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "hash-db", "log", @@ -11054,12 +10647,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11072,7 +10665,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "log", "sp-core", @@ -11085,7 +10678,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "futures-timer", @@ -11101,7 +10694,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "sp-std", @@ -11113,7 +10706,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "sp-api", "sp-runtime", @@ -11122,7 +10715,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "log", @@ -11138,7 +10731,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "hash-db", "memory-db", @@ -11154,7 +10747,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11171,7 +10764,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11182,7 +10775,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "impl-trait-for-tuples", "log", @@ -11228,7 +10821,7 @@ dependencies = [ "frame-election-provider-support", "frame-support", "frame-system", - "jsonrpsee 0.12.0", + "jsonrpsee", "kusama-runtime", "log", "pallet-balances", @@ -11374,7 +10967,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "platforms", ] @@ -11382,18 +10975,17 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "jsonrpsee", "log", "parity-scale-codec", "sc-client-api", "sc-rpc-api", "sc-transaction-pool-api", + "serde_json", "sp-api", "sp-block-builder", "sp-blockchain", @@ -11404,7 +10996,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures-util", "hyper", @@ -11417,11 +11009,9 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", + "jsonrpsee", "log", "parity-scale-codec", "sc-client-api", @@ -11440,7 +11030,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "async-trait", "futures 0.3.21", @@ -11466,7 +11056,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -11476,9 +11066,9 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -11487,7 +11077,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "ansi_term", "build-helper", @@ -11605,7 +11195,7 @@ dependencies = [ "rand 0.8.5", "redox_syscall 0.2.10", "remove_dir_all", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -11616,7 +11206,7 @@ checksum = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42" dependencies = [ "byteorder", "dirs", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -11845,7 +11435,7 @@ checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" dependencies = [ "libc", "wasi 0.10.0+wasi-snapshot-preview1", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -11897,10 +11487,10 @@ version = "1.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dce653fb475565de9f6fb0614b28bca8df2c430c0cf84bcd9c843f15de5414cc" dependencies = [ - "bytes 1.1.0", + "bytes", "libc", "memchr", - "mio 0.8.2", + "mio", "num_cpus", "once_cell", "parking_lot 0.12.0", @@ -11908,7 +11498,7 @@ dependencies = [ "signal-hook-registry", "socket2", "tokio-macros", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -11954,17 +11544,6 @@ dependencies = [ "webpki 0.22.0", ] -[[package]] -name = "tokio-stream" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3" -dependencies = [ - "futures-core", - "pin-project-lite 0.2.7", - "tokio", -] - [[package]] name = "tokio-tungstenite" version = "0.17.1" @@ -11983,7 +11562,7 @@ version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0" dependencies = [ - "bytes 1.1.0", + "bytes", "futures-core", "futures-sink", "log", @@ -11997,7 +11576,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764" dependencies = [ - "bytes 1.1.0", + "bytes", "futures-core", "futures-io", "futures-sink", @@ -12080,7 +11659,7 @@ version = "0.9.19" dependencies = [ "assert_matches", "expander 0.0.6", - "proc-macro-crate 1.1.3", + "proc-macro-crate", "proc-macro2", "quote", "syn", @@ -12185,7 +11764,7 @@ dependencies = [ "futures-channel", "futures-io", "futures-util", - "idna 0.2.3", + "idna", "ipnet", "lazy_static", "log", @@ -12193,7 +11772,7 @@ dependencies = [ "smallvec", "thiserror", "tinyvec", - "url 2.2.2", + "url", ] [[package]] @@ -12224,10 +11803,10 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f9f0b08273c41beabf5ad5f3d6262d96c947b8d9" +source = "git+https://github.com/paritytech/substrate?branch=master#e0ccd008fe8bfaf29357ea87561e60f3baaae08c" dependencies = [ "clap", - "jsonrpsee 0.10.1", + "jsonrpsee", "log", "parity-scale-codec", "remote-externalities", @@ -12276,14 +11855,14 @@ checksum = "d96a2dea40e7570482f28eb57afbe42d97551905da6a9400acc5c328d24004f5" dependencies = [ "base64", "byteorder", - "bytes 1.1.0", + "bytes", "http", "httparse", "log", "rand 0.8.5", "sha-1 0.10.0", "thiserror", - "url 2.2.2", + "url", "utf-8", ] @@ -12382,7 +11961,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d86a8dc7f45e4c1b0d30e43038c38f274e77af056aa5f74b93c2cf9eb3c1c836" dependencies = [ "asynchronous-codec", - "bytes 1.1.0", + "bytes", "futures-io", "futures-util", ] @@ -12393,17 +11972,6 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" -[[package]] -name = "url" -version = "1.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" -dependencies = [ - "idna 0.1.5", - "matches", - "percent-encoding 1.0.1", -] - [[package]] name = "url" version = "2.2.2" @@ -12411,9 +11979,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" dependencies = [ "form_urlencoded", - "idna 0.2.3", + "idna", "matches", - "percent-encoding 2.1.0", + "percent-encoding", ] [[package]] @@ -12488,7 +12056,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" dependencies = [ "same-file", - "winapi 0.3.9", + "winapi", "winapi-util", ] @@ -12682,7 +12250,7 @@ dependencies = [ "wasmtime-environ", "wasmtime-jit", "wasmtime-runtime", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -12701,7 +12269,7 @@ dependencies = [ "serde", "sha2 0.9.8", "toml", - "winapi 0.3.9", + "winapi", "zstd", ] @@ -12770,7 +12338,7 @@ dependencies = [ "wasmtime-environ", "wasmtime-jit-debug", "wasmtime-runtime", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -12806,7 +12374,7 @@ dependencies = [ "thiserror", "wasmtime-environ", "wasmtime-jit-debug", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -12989,12 +12557,6 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983" -[[package]] -name = "winapi" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" - [[package]] name = "winapi" version = "0.3.9" @@ -13005,12 +12567,6 @@ dependencies = [ "winapi-x86_64-pc-windows-gnu", ] -[[package]] -name = "winapi-build" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" - [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" @@ -13023,7 +12579,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -13124,7 +12680,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -13133,17 +12689,7 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" dependencies = [ - "winapi 0.3.9", -] - -[[package]] -name = "ws2_32-sys" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" -dependencies = [ - "winapi 0.2.8", - "winapi-build", + "winapi", ] [[package]] @@ -13360,7 +12906,7 @@ dependencies = [ "tokio", "tokio-tungstenite", "tracing-gum", - "url 2.2.2", + "url", ] [[package]] From 8c41516984eab0e26b760a5d68505698a7f96ddb Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 10 May 2022 11:09:22 +0200 Subject: [PATCH 23/23] cargo fmt --- tests/benchmark_block_works.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/benchmark_block_works.rs b/tests/benchmark_block_works.rs index b28814ba4d56..0994fae675a4 100644 --- a/tests/benchmark_block_works.rs +++ b/tests/benchmark_block_works.rs @@ -22,7 +22,12 @@ use nix::{ sys::signal::{kill, Signal::SIGINT}, unistd::Pid, }; -use std::{path::Path, process::{self, Command}, result::Result, time::Duration}; +use std::{ + path::Path, + process::{self, Command}, + result::Result, + time::Duration, +}; use tempfile::tempdir; pub mod common;