From c102a7504b8eed23620f0d29f3b894f164109b72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Fri, 28 Aug 2020 15:52:33 +0200 Subject: [PATCH 1/3] Companion PR for #6215 --- node/service/src/lib.rs | 15 +++++++++------ rpc/Cargo.toml | 1 + rpc/src/lib.rs | 18 +++++++++++++----- service/src/lib.rs | 15 +++++++++------ 4 files changed, 32 insertions(+), 17 deletions(-) diff --git a/node/service/src/lib.rs b/node/service/src/lib.rs index 9c854525c08c..8ea0fdae3d35 100644 --- a/node/service/src/lib.rs +++ b/node/service/src/lib.rs @@ -166,7 +166,10 @@ fn new_partial(config: &mut Configuration) -> Result< grandpa::LinkHalf, FullSelectChain>, babe::BabeLink ), - grandpa::SharedVoterState, + ( + grandpa::SharedVoterState, + Arc>, + ), ) >, Error @@ -232,9 +235,11 @@ fn new_partial(config: &mut Configuration) -> Result< let justification_stream = grandpa_link.justification_stream(); let shared_authority_set = grandpa_link.shared_authority_set().clone(); let shared_voter_state = grandpa::SharedVoterState::empty(); + let finality_proof_provider = + GrandpaFinalityProofProvider::new_for_service(backend.clone(), client.clone()); let import_setup = (block_import.clone(), grandpa_link, babe_link.clone()); - let rpc_setup = shared_voter_state.clone(); + let rpc_setup = (shared_voter_state.clone(), finality_proof_provider.clone()); let babe_config = babe_link.config().clone(); let shared_epoch_changes = babe_link.epoch_changes().clone(); @@ -261,6 +266,7 @@ fn new_partial(config: &mut Configuration) -> Result< shared_authority_set: shared_authority_set.clone(), justification_stream: justification_stream.clone(), subscriptions, + finality_provider: finality_proof_provider.clone(), }, }; @@ -341,8 +347,7 @@ fn new_full( let prometheus_registry = config.prometheus_registry().cloned(); - let finality_proof_provider = - GrandpaFinalityProofProvider::new_for_service(backend.clone(), client.clone()); + let (shared_voter_state, finality_proof_provider) = rpc_setup; let (network, network_status_sinks, system_rpc_tx, network_starter) = service::build_network(service::BuildNetworkParams { @@ -382,8 +387,6 @@ fn new_full( let (block_import, link_half, babe_link) = import_setup; - let shared_voter_state = rpc_setup; - let overseer_client = client.clone(); let spawner = task_manager.spawn_handle(); let leaves: Vec<_> = select_chain.clone() diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index ed4aa0ac09e1..35bbdfa81239 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -14,6 +14,7 @@ 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" } +sp-state-machine = { 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"} diff --git a/rpc/src/lib.rs b/rpc/src/lib.rs index 4867e14f15d5..5a592896f714 100644 --- a/rpc/src/lib.rs +++ b/rpc/src/lib.rs @@ -23,12 +23,14 @@ use std::sync::Arc; use polkadot_primitives::v0::{Block, BlockNumber, AccountId, Nonce, Balance, Hash}; use sp_api::ProvideRuntimeApi; use txpool_api::TransactionPool; +use sp_block_builder::BlockBuilder; use sp_blockchain::{HeaderBackend, HeaderMetadata, Error as BlockChainError}; use sp_consensus::SelectChain; use sp_consensus_babe::BabeApi; +use sp_runtime::traits::BlakeTwo256; use sc_client_api::light::{Fetcher, RemoteBlockchain}; use sc_consensus_babe::Epoch; -use sp_block_builder::BlockBuilder; +use sc_finality_grandpa::FinalityProofProvider; pub use sc_rpc::DenyUnsafe; pub use jsonrpc_pubsub::manager::SubscriptionManager; @@ -58,7 +60,7 @@ pub struct BabeDeps { } /// Dependencies for GRANDPA -pub struct GrandpaDeps { +pub struct GrandpaDeps { /// Voting round info. pub shared_voter_state: sc_finality_grandpa::SharedVoterState, /// Authority set info. @@ -67,10 +69,12 @@ pub struct GrandpaDeps { pub justification_stream: sc_finality_grandpa::GrandpaJustificationStream, /// Subscription manager to keep track of pubsub subscribers. pub subscriptions: jsonrpc_pubsub::manager::SubscriptionManager, + /// Finality proof provider. + pub finality_provider: Arc>, } /// Full client dependencies -pub struct FullDeps { +pub struct FullDeps { /// The client instance to use. pub client: Arc, /// Transaction pool instance. @@ -82,11 +86,11 @@ pub struct FullDeps { /// BABE specific dependencies. pub babe: BabeDeps, /// GRANDPA specific dependencies. - pub grandpa: GrandpaDeps, + pub grandpa: GrandpaDeps, } /// Instantiate all RPC extensions. -pub fn create_full(deps: FullDeps) -> RpcExtension where +pub fn create_full(deps: FullDeps) -> RpcExtension where C: ProvideRuntimeApi, C: HeaderBackend + HeaderMetadata, C: Send + Sync + 'static, @@ -96,6 +100,8 @@ pub fn create_full(deps: FullDeps) -> RpcExtension where C::Api: BlockBuilder, P: TransactionPool + Sync + Send + 'static, SC: SelectChain + 'static, + B: Send + Sync + 'static + sc_client_api::Backend, + >::State: sp_state_machine::Backend, { use frame_rpc_system::{FullSystem, SystemApi}; use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApi}; @@ -121,6 +127,7 @@ pub fn create_full(deps: FullDeps) -> RpcExtension where shared_authority_set, justification_stream, subscriptions, + finality_provider, } = grandpa; io.extend_with( @@ -147,6 +154,7 @@ pub fn create_full(deps: FullDeps) -> RpcExtension where shared_voter_state, justification_stream, subscriptions, + finality_provider, )) ); io diff --git a/service/src/lib.rs b/service/src/lib.rs index d2fb3dab00af..e5de7eba95b3 100644 --- a/service/src/lib.rs +++ b/service/src/lib.rs @@ -129,7 +129,10 @@ pub fn new_partial(config: &mut Configuration, test: bool) grandpa::LinkHalf, FullSelectChain>, babe::BabeLink ), - grandpa::SharedVoterState, + ( + grandpa::SharedVoterState, + Arc>, + ), ) >, Error @@ -200,9 +203,11 @@ pub fn new_partial(config: &mut Configuration, test: bool) let justification_stream = grandpa_link.justification_stream(); let shared_authority_set = grandpa_link.shared_authority_set().clone(); let shared_voter_state = grandpa::SharedVoterState::empty(); + let finality_proof_provider = + GrandpaFinalityProofProvider::new_for_service(backend.clone(), client.clone()); let import_setup = (block_import.clone(), grandpa_link, babe_link.clone()); - let rpc_setup = shared_voter_state.clone(); + let rpc_setup = (shared_voter_state.clone(), finality_proof_provider.clone()); let babe_config = babe_link.config().clone(); let shared_epoch_changes = babe_link.epoch_changes().clone(); @@ -229,6 +234,7 @@ pub fn new_partial(config: &mut Configuration, test: bool) shared_authority_set: shared_authority_set.clone(), justification_stream: justification_stream.clone(), subscriptions, + finality_provider: finality_proof_provider.clone(), }, }; @@ -282,8 +288,7 @@ pub fn new_full( let prometheus_registry = config.prometheus_registry().cloned(); - let finality_proof_provider = - GrandpaFinalityProofProvider::new_for_service(backend.clone(), client.clone()); + let (shared_voter_state, finality_proof_provider) = rpc_setup; let (network, network_status_sinks, system_rpc_tx, network_starter) = service::build_network(service::BuildNetworkParams { @@ -323,8 +328,6 @@ pub fn new_full( let (block_import, link_half, babe_link) = import_setup; - let shared_voter_state = rpc_setup; - if role.is_authority() { let proposer = consensus::ProposerFactory::new( client.clone(), From b205ae03032412671fcc207a1746d5394b8d9308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Wed, 16 Sep 2020 01:02:48 +0200 Subject: [PATCH 2/3] rpc: fix reviewer comments --- Cargo.lock | 1 - rpc/Cargo.toml | 1 - rpc/src/lib.rs | 5 ++--- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f857da497ab3..d969ea3cdef8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5229,7 +5229,6 @@ dependencies = [ "sp-consensus", "sp-consensus-babe", "sp-runtime", - "sp-state-machine", "sp-transaction-pool", "substrate-frame-rpc-system", ] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index aff90e76030f..50b965060053 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -13,7 +13,6 @@ 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" } -sp-state-machine = { 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"} diff --git a/rpc/src/lib.rs b/rpc/src/lib.rs index f9e37575444b..8301599412ad 100644 --- a/rpc/src/lib.rs +++ b/rpc/src/lib.rs @@ -27,7 +27,6 @@ use sp_block_builder::BlockBuilder; use sp_blockchain::{HeaderBackend, HeaderMetadata, Error as BlockChainError}; use sp_consensus::SelectChain; use sp_consensus_babe::BabeApi; -use sp_runtime::traits::BlakeTwo256; use sc_client_api::light::{Fetcher, RemoteBlockchain}; use sc_consensus_babe::Epoch; use sc_finality_grandpa::FinalityProofProvider; @@ -99,8 +98,8 @@ pub fn create_full(deps: FullDeps) -> RpcExtension whe C::Api: BlockBuilder, P: TransactionPool + Sync + Send + 'static, SC: SelectChain + 'static, - B: Send + Sync + 'static + sc_client_api::Backend, - >::State: sp_state_machine::Backend, + B: sc_client_api::Backend + Send + Sync + 'static, + B::State: sc_client_api::StateBackend>, { use frame_rpc_system::{FullSystem, SystemApi}; use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApi}; From 897a96c2cd38baf63066416cf5029528c404f60e Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Fri, 18 Sep 2020 16:39:37 +0000 Subject: [PATCH 3/3] "Update Substrate" --- Cargo.lock | 319 ++++++++++++++++++++++++++--------------------------- 1 file changed, 156 insertions(+), 163 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 660bd9347c7c..051d8d105a2f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1429,7 +1429,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", ] @@ -1437,7 +1437,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -1455,7 +1455,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -1473,12 +1473,13 @@ dependencies = [ [[package]] name = "frame-executive" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "serde", + "sp-core", "sp-io", "sp-runtime", "sp-std", @@ -1488,7 +1489,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "11.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "serde", @@ -1499,7 +1500,7 @@ dependencies = [ [[package]] name = "frame-support" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "bitmask", "frame-metadata", @@ -1524,7 +1525,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support-procedural-tools", "proc-macro2 1.0.18", @@ -1535,7 +1536,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -1547,7 +1548,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "proc-macro2 1.0.18", "quote 1.0.7", @@ -1557,7 +1558,7 @@ dependencies = [ [[package]] name = "frame-system" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -1573,7 +1574,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -1587,7 +1588,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "sp-api", @@ -3755,7 +3756,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -3771,7 +3772,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -3786,7 +3787,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3811,7 +3812,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3825,7 +3826,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3841,7 +3842,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3856,7 +3857,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3871,7 +3872,7 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -3887,7 +3888,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3909,7 +3910,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "enumflags2", "frame-benchmarking", @@ -3925,7 +3926,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3945,7 +3946,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -3961,7 +3962,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -3975,7 +3976,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -3990,7 +3991,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -4004,7 +4005,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -4019,7 +4020,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4040,7 +4041,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -4055,7 +4056,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -4068,7 +4069,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "enumflags2", "frame-support", @@ -4083,7 +4084,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4098,7 +4099,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -4118,7 +4119,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4134,7 +4135,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -4148,7 +4149,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4170,7 +4171,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -4181,7 +4182,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -4195,7 +4196,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4213,7 +4214,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "frame-system", @@ -4230,7 +4231,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -4248,7 +4249,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-support", "parity-scale-codec", @@ -4261,7 +4262,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4276,7 +4277,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4292,7 +4293,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6251,27 +6252,6 @@ dependencies = [ "winapi 0.3.9", ] -[[package]] -name = "rental" -version = "0.5.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8545debe98b2b139fb04cad8618b530e9b07c152d99a5de83c860b877d67847f" -dependencies = [ - "rental-impl", - "stable_deref_trait", -] - -[[package]] -name = "rental-impl" -version = "0.5.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "475e68978dc5b743f2f40d8e0a8fdc83f1c5e78cbf4b8fa5e74e73beebc340de" -dependencies = [ - "proc-macro2 1.0.18", - "quote 1.0.7", - "syn 1.0.33", -] - [[package]] name = "retain_mut" version = "0.1.1" @@ -6479,7 +6459,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "bytes 0.5.6", "derive_more 0.99.9", @@ -6507,7 +6487,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6531,7 +6511,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -6548,7 +6528,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -6565,7 +6545,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -6576,14 +6556,13 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "ansi_term 0.12.1", "atty", "bip39", "chrono", "derive_more 0.99.9", - "env_logger", "fdlimit", "futures 0.3.5", "hex", @@ -6618,12 +6597,15 @@ dependencies = [ "substrate-prometheus-endpoint", "time", "tokio 0.2.21", + "tracing", + "tracing-log", + "tracing-subscriber", ] [[package]] name = "sc-client-api" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "fnv", @@ -6659,7 +6641,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "blake2-rfc", "hash-db", @@ -6689,7 +6671,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "sc-client-api", "sp-blockchain", @@ -6700,7 +6682,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "fork-tree", @@ -6744,7 +6726,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -6768,7 +6750,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "fork-tree", "parity-scale-codec", @@ -6781,7 +6763,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6804,7 +6786,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "log 0.4.11", "sc-client-api", @@ -6818,7 +6800,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "lazy_static", @@ -6846,7 +6828,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "log 0.4.11", @@ -6863,7 +6845,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "log 0.4.11", "parity-scale-codec", @@ -6878,7 +6860,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "log 0.4.11", "parity-scale-codec", @@ -6896,7 +6878,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "finality-grandpa", @@ -6933,7 +6915,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "finality-grandpa", @@ -6944,10 +6926,12 @@ dependencies = [ "jsonrpc-pubsub", "log 0.4.11", "parity-scale-codec", + "sc-client-api", "sc-finality-grandpa", "sc-rpc", "serde", "serde_json", + "sp-blockchain", "sp-core", "sp-runtime", ] @@ -6955,7 +6939,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "ansi_term 0.12.1", "futures 0.3.5", @@ -6973,7 +6957,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "hex", @@ -6989,7 +6973,7 @@ dependencies = [ [[package]] name = "sc-light" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "hash-db", "lazy_static", @@ -7008,7 +6992,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "async-std", "async-trait", @@ -7062,7 +7046,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -7077,7 +7061,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "bytes 0.5.6", "fnv", @@ -7104,7 +7088,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "futures 0.3.5", "libp2p", @@ -7117,7 +7101,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "log 0.4.11", "substrate-prometheus-endpoint", @@ -7126,7 +7110,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "futures 0.3.5", "hash-db", @@ -7158,7 +7142,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7182,8 +7166,9 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ + "futures 0.1.29", "jsonrpc-core", "jsonrpc-http-server", "jsonrpc-ipc-server", @@ -7193,12 +7178,13 @@ dependencies = [ "serde", "serde_json", "sp-runtime", + "substrate-prometheus-endpoint", ] [[package]] name = "sc-service" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "directories", @@ -7246,6 +7232,7 @@ dependencies = [ "sp-runtime", "sp-session", "sp-state-machine", + "sp-tracing", "sp-transaction-pool", "sp-trie", "sp-utils", @@ -7259,7 +7246,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "log 0.4.11", "parity-scale-codec", @@ -7273,7 +7260,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -7294,7 +7281,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "erased-serde", "log 0.4.11", @@ -7306,13 +7293,14 @@ dependencies = [ "slog", "sp-tracing", "tracing", + "tracing-core", "tracing-subscriber", ] [[package]] name = "sc-transaction-graph" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7333,7 +7321,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7800,7 +7788,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "log 0.4.11", @@ -7812,7 +7800,7 @@ dependencies = [ [[package]] name = "sp-api" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "hash-db", "parity-scale-codec", @@ -7827,7 +7815,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "blake2-rfc", "proc-macro-crate", @@ -7839,7 +7827,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "serde", @@ -7851,7 +7839,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "integer-sqrt", "num-traits 0.2.12", @@ -7864,7 +7852,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "sp-api", @@ -7876,7 +7864,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -7887,7 +7875,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "sp-api", @@ -7899,7 +7887,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "log 0.4.11", @@ -7916,7 +7904,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "serde", "serde_json", @@ -7925,7 +7913,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7951,7 +7939,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "merlin", "parity-scale-codec", @@ -7970,7 +7958,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -7979,7 +7967,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -7991,7 +7979,7 @@ dependencies = [ [[package]] name = "sp-core" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "base58", "blake2-rfc", @@ -8035,7 +8023,7 @@ dependencies = [ [[package]] name = "sp-database" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "kvdb", "parking_lot 0.10.2", @@ -8044,7 +8032,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "proc-macro2 1.0.18", "quote 1.0.7", @@ -8054,7 +8042,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "environmental", "parity-scale-codec", @@ -8065,7 +8053,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "finality-grandpa", "log 0.4.11", @@ -8081,7 +8069,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -8091,7 +8079,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "parity-scale-codec", @@ -8103,7 +8091,7 @@ dependencies = [ [[package]] name = "sp-io" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "futures 0.3.5", "hash-db", @@ -8119,12 +8107,14 @@ dependencies = [ "sp-tracing", "sp-trie", "sp-wasm-interface", + "tracing", + "tracing-core", ] [[package]] name = "sp-keyring" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "lazy_static", "sp-core", @@ -8135,7 +8125,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "serde", @@ -8147,7 +8137,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -8158,7 +8148,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "sp-api", "sp-core", @@ -8168,7 +8158,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "backtrace", "log 0.4.11", @@ -8177,7 +8167,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "serde", "sp-core", @@ -8186,7 +8176,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "either", "hash256-std-hasher", @@ -8208,7 +8198,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "primitive-types", @@ -8224,7 +8214,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "Inflector", "proc-macro-crate", @@ -8236,7 +8226,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "serde", "serde_json", @@ -8245,7 +8235,7 @@ dependencies = [ [[package]] name = "sp-session" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "sp-api", @@ -8258,7 +8248,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -8268,7 +8258,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "hash-db", "log 0.4.11", @@ -8289,12 +8279,12 @@ dependencies = [ [[package]] name = "sp-std" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" [[package]] name = "sp-storage" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "impl-serde", "parity-scale-codec", @@ -8307,7 +8297,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8321,17 +8311,20 @@ dependencies = [ [[package]] name = "sp-tracing" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "log 0.4.11", - "rental", + "parity-scale-codec", + "sp-std", "tracing", + "tracing-core", + "tracing-subscriber", ] [[package]] name = "sp-transaction-pool" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -8346,7 +8339,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "hash-db", "memory-db", @@ -8360,7 +8353,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "futures 0.3.5", "futures-core", @@ -8372,7 +8365,7 @@ dependencies = [ [[package]] name = "sp-version" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "impl-serde", "parity-scale-codec", @@ -8384,7 +8377,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8525,7 +8518,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "chrono", "console_error_panic_hook", @@ -8551,7 +8544,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "platforms", ] @@ -8559,7 +8552,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.5", @@ -8582,7 +8575,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "async-std", "derive_more 0.99.9", @@ -8596,7 +8589,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "futures 0.1.29", "futures 0.3.5", @@ -8622,7 +8615,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "futures 0.3.5", "substrate-test-utils-derive", @@ -8632,7 +8625,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#89bdfcc26a1301298eac893ec1560cdd9d27c6a9" +source = "git+https://github.com/paritytech/substrate#16474ee9ed8f75ad578f4539ae4fc016ecf8b3d1" dependencies = [ "proc-macro-crate", "quote 1.0.7", @@ -9191,9 +9184,9 @@ checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860" [[package]] name = "tracing" -version = "0.1.18" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0aae59226cf195d8e74d4b34beae1859257efb4e5fed3f147d2dc2c7d372178" +checksum = "6d79ca061b032d6ce30c660fded31189ca0b9922bf483cd70759f13a2d86786c" dependencies = [ "cfg-if", "tracing-attributes", @@ -9202,9 +9195,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.9" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0693bf8d6f2bf22c690fc61a9d21ac69efdbb894a17ed596b9af0f01e64b84b" +checksum = "80e0ccfc3378da0cce270c946b676a376943f5cd16aeba64568e7939806f4ada" dependencies = [ "proc-macro2 1.0.18", "quote 1.0.7", @@ -9213,9 +9206,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.13" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d593f98af59ebc017c0648f0117525db358745a8894a8d684e185ba3f45954f9" +checksum = "5bcf46c1f1f06aeea2d6b81f3c863d0930a596c86ad1920d4e5bad6dd1d7119a" dependencies = [ "lazy_static", ]