From 1daf6bf61d84898c923cd6dfe0c17979a0c275d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Mon, 11 Nov 2019 23:59:59 +0100 Subject: [PATCH 01/12] Update to latest Substrate master (#570) --- network/Cargo.toml | 1 + network/src/gossip.rs | 2 +- network/src/router.rs | 2 +- network/src/tests/validation.rs | 4 +++- network/src/validation.rs | 2 +- primitives/Cargo.toml | 4 ++-- primitives/src/parachain.rs | 2 +- runtime/Cargo.toml | 8 +++++-- runtime/src/attestations.rs | 4 ++-- runtime/src/lib.rs | 19 +++++++-------- runtime/src/parachains.rs | 4 ++-- service/Cargo.toml | 1 + service/src/lib.rs | 3 ++- validation/Cargo.toml | 2 ++ validation/src/attestation_service.rs | 8 +++++-- validation/src/collation.rs | 11 ++++++--- validation/src/error.rs | 3 +-- validation/src/lib.rs | 34 +++++++++++++++++++-------- validation/src/shared_table/mod.rs | 2 +- 19 files changed, 74 insertions(+), 42 deletions(-) diff --git a/network/Cargo.toml b/network/Cargo.toml index 3da3fce1e2dd..e1e0c4a09940 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -23,3 +23,4 @@ substrate-client = { git = "https://github.com/paritytech/substrate", branch = " [dev-dependencies] substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/network/src/gossip.rs b/network/src/gossip.rs index 04f873f0fcd0..b15062113db6 100644 --- a/network/src/gossip.rs +++ b/network/src/gossip.rs @@ -249,7 +249,7 @@ impl ChainContext for (F, P) where F: Fn(&Hash) -> Option + Send + Sync, P: Send + Sync + std::ops::Deref, P::Target: ProvideRuntimeApi, - ::Api: ParachainHost, + ::Api: ParachainHost, { fn is_known(&self, block_hash: &Hash) -> Option { (self.0)(block_hash) diff --git a/network/src/router.rs b/network/src/router.rs index baad3ad63418..a39437fade78 100644 --- a/network/src/router.rs +++ b/network/src/router.rs @@ -126,7 +126,7 @@ impl Clone for Router { } impl Router where - P::Api: ParachainHost, + P::Api: ParachainHost, N: NetworkService, T: Clone + Executor + Send + 'static, E: Future + Clone + Send + 'static, diff --git a/network/src/tests/validation.rs b/network/src/tests/validation.rs index bf2fa74dcf47..69bc3623607b 100644 --- a/network/src/tests/validation.rs +++ b/network/src/tests/validation.rs @@ -34,7 +34,7 @@ use polkadot_primitives::parachain::{ }; use parking_lot::Mutex; use substrate_client::error::Result as ClientResult; -use substrate_client::runtime_api::{Core, RuntimeVersion, StorageProof, ApiExt}; +use sr_api::{Core, RuntimeVersion, StorageProof, ApiExt}; use sr_primitives::traits::{ApiRef, ProvideRuntimeApi}; use std::collections::HashMap; @@ -231,6 +231,8 @@ impl Core for RuntimeApi { } impl ApiExt for RuntimeApi { + type Error = substrate_client::error::Error; + fn map_api_result Result, R, E>( &self, _: F diff --git a/network/src/validation.rs b/network/src/validation.rs index a6b75e33bc6d..0659d05ede5a 100644 --- a/network/src/validation.rs +++ b/network/src/validation.rs @@ -205,7 +205,7 @@ impl ValidationNetwork where N: NetworkService { /// A long-lived network which can create parachain statement routing processes on demand. impl ParachainNetwork for ValidationNetwork where P: ProvideRuntimeApi + Send + Sync + 'static, - P::Api: ParachainHost, + P::Api: ParachainHost, E: Clone + Future + Send + Sync + 'static, N: NetworkService, T: Clone + Executor + Send + Sync + 'static, diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 54ff710326f0..4fee8dffeca2 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -9,7 +9,7 @@ serde = { version = "1.0", optional = true, features = ["derive"] } parity-scale-codec = { version = "1.0.5", default-features = false, features = ["bit-vec", "derive"] } primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -26,7 +26,7 @@ default = ["std"] std = [ "parity-scale-codec/std", "primitives/std", - "substrate-client/std", + "sr-api/std", "rstd/std", "sr-version/std", "runtime_primitives/std", diff --git a/primitives/src/parachain.rs b/primitives/src/parachain.rs index 0f22c9eaa733..1663c671e157 100644 --- a/primitives/src/parachain.rs +++ b/primitives/src/parachain.rs @@ -483,7 +483,7 @@ pub struct Status { pub fee_schedule: FeeSchedule, } -substrate_client::decl_runtime_apis! { +sr_api::decl_runtime_apis! { /// The API for querying the state of parachains on-chain. pub trait ParachainHost { /// Get the current validators. diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index d469498a7d02..93dcaf51b475 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -16,7 +16,7 @@ serde_derive = { version = "1.0", optional = true } authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -27,6 +27,8 @@ substrate-primitives = { git = "https://github.com/paritytech/substrate", defaul substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +tx-pool-api = { package = "substrate-transaction-pool-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +block-builder-api = { package = "substrate-block-builder-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } authority-discovery = { package = "srml-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } authorship = { package = "srml-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -85,7 +87,9 @@ std = [ "inherents/std", "substrate-primitives/std", "polkadot-parachain/std", - "client/std", + "sr-api/std", + "tx-pool-api/std", + "block-builder-api/std", "offchain-primitives/std", "rstd/std", "sr-io/std", diff --git a/runtime/src/attestations.rs b/runtime/src/attestations.rs index e85f4e2d11fa..b891e427f52b 100644 --- a/runtime/src/attestations.rs +++ b/runtime/src/attestations.rs @@ -27,7 +27,7 @@ use primitives::{Hash, parachain::{AttestedCandidate, CandidateReceipt, Id as Pa use sr_primitives::RuntimeDebug; use sr_staking_primitives::SessionIndex; -use inherents::{ProvideInherent, InherentData, RuntimeString, MakeFatalError, InherentIdentifier}; +use inherents::{ProvideInherent, InherentData, MakeFatalError, InherentIdentifier}; use system::ensure_none; /// Parachain blocks included in a recent relay-chain block. @@ -178,7 +178,7 @@ pub type InherentType = MoreAttestations; impl ProvideInherent for Module { type Call = Call; - type Error = MakeFatalError; + type Error = MakeFatalError; const INHERENT_IDENTIFIER: InherentIdentifier = MORE_ATTESTATIONS_IDENTIFIER; fn create_inherent(data: &InherentData) -> Option { diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 43a3521aa769..c9c90e6d05ac 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -35,10 +35,6 @@ use primitives::{ AccountId, AccountIndex, Balance, BlockNumber, Hash, Nonce, Signature, Moment, parachain::{self, ActiveParas}, ValidityError, }; -use client::{ - block_builder::api::{self as block_builder_api, InherentData, CheckInherentsResult}, - runtime_api as client_api, impl_runtime_apis, -}; use sr_primitives::{ create_runtime_str, generic, impl_opaque_keys, ApplyResult, Permill, Perbill, RuntimeDebug, @@ -625,8 +621,8 @@ pub type CheckedExtrinsic = generic::CheckedExtrinsic; /// Executive: handles dispatch to the various modules. pub type Executive = executive::Executive, Runtime, AllModules>; -impl_runtime_apis! { - impl client_api::Core for Runtime { +sr_api::impl_runtime_apis! { + impl sr_api::Core for Runtime { fn version() -> RuntimeVersion { VERSION } @@ -640,7 +636,7 @@ impl_runtime_apis! { } } - impl client_api::Metadata for Runtime { + impl sr_api::Metadata for Runtime { fn metadata() -> OpaqueMetadata { Runtime::metadata().into() } @@ -655,11 +651,14 @@ impl_runtime_apis! { Executive::finalize_block() } - fn inherent_extrinsics(data: InherentData) -> Vec<::Extrinsic> { + fn inherent_extrinsics(data: inherents::InherentData) -> Vec<::Extrinsic> { data.create_extrinsics() } - fn check_inherents(block: Block, data: InherentData) -> CheckInherentsResult { + fn check_inherents( + block: Block, + data: inherents::InherentData, + ) -> inherents::CheckInherentsResult { data.check_extrinsics(&block) } @@ -668,7 +667,7 @@ impl_runtime_apis! { } } - impl client_api::TaggedTransactionQueue for Runtime { + impl tx_pool_api::TaggedTransactionQueue for Runtime { fn validate_transaction(tx: ::Extrinsic) -> TransactionValidity { Executive::validate_transaction(tx) } diff --git a/runtime/src/parachains.rs b/runtime/src/parachains.rs index 3a2efd2eb87c..79a24e734b26 100644 --- a/runtime/src/parachains.rs +++ b/runtime/src/parachains.rs @@ -39,7 +39,7 @@ use srml_support::{ traits::{Currency, Get, WithdrawReason, ExistenceRequirement, Randomness}, }; -use inherents::{ProvideInherent, InherentData, RuntimeString, MakeFatalError, InherentIdentifier}; +use inherents::{ProvideInherent, InherentData, MakeFatalError, InherentIdentifier}; use system::ensure_none; use crate::attestations::{self, IncludedBlocks}; @@ -874,7 +874,7 @@ pub type InherentType = Vec; impl ProvideInherent for Module { type Call = Call; - type Error = MakeFatalError; + type Error = MakeFatalError; const INHERENT_IDENTIFIER: InherentIdentifier = NEW_HEADS_IDENTIFIER; fn create_inherent(data: &InherentData) -> Option { diff --git a/service/Cargo.toml b/service/Cargo.toml index 493dc6e5ad11..26ba4cf6dbc0 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -20,6 +20,7 @@ polkadot-executor = { path = "../executor" } polkadot-network = { path = "../network" } polkadot-rpc = { path = "../rpc" } sr-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/service/src/lib.rs b/service/src/lib.rs index c8a18e9eea46..e11ee051662b 100644 --- a/service/src/lib.rs +++ b/service/src/lib.rs @@ -33,7 +33,8 @@ use log::info; pub use service::{AbstractService, Roles, PruningMode, TransactionPoolOptions, Error}; pub use service::{ServiceBuilderExport, ServiceBuilderImport, ServiceBuilderRevert}; pub use service::config::{DatabaseConfig, full_version_from_strs}; -pub use client::{backend::Backend, runtime_api::{Core as CoreApi, ConstructRuntimeApi}, ExecutionStrategy, CallExecutor}; +pub use client::{backend::Backend, ExecutionStrategy, CallExecutor}; +pub use sr_api::{Core as CoreApi, ConstructRuntimeApi}; pub use consensus_common::SelectChain; pub use polkadot_network::{PolkadotProtocol}; pub use polkadot_primitives::parachain::{CollatorId, ParachainHost}; diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 8f5751ba8e7d..020d4c890258 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -25,6 +25,8 @@ consensus = { package = "substrate-consensus-common", git = "https://github.com/ primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +block-builder = { package = "substrate-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } bitvec = { version = "0.14.0", default-features = false, features = ["alloc"] } diff --git a/validation/src/attestation_service.rs b/validation/src/attestation_service.rs index 93f9a212c1ea..1d1cc7841e4c 100644 --- a/validation/src/attestation_service.rs +++ b/validation/src/attestation_service.rs @@ -26,7 +26,7 @@ use std::{thread, time::{Duration, Instant}, sync::Arc}; use client::{error::Result as ClientResult, BlockchainEvents, BlockBody}; -use client::block_builder::api::BlockBuilder; +use block_builder::BlockBuilderApi; use client::blockchain::HeaderBackend; use consensus::SelectChain; use availability_store::Store as AvailabilityStore; @@ -38,6 +38,7 @@ use polkadot_primitives::parachain::{CandidateReceipt, ParachainHost}; use runtime_primitives::traits::{ProvideRuntimeApi}; use babe_primitives::BabeApi; use keystore::KeyStorePtr; +use sr_api::ApiExt; use tokio::{timer::Interval, runtime::current_thread::Runtime as LocalRuntime}; use log::{warn, debug}; @@ -123,7 +124,10 @@ pub(crate) fn start( ::Future: Send + 'static, P: BlockchainEvents + BlockBody, P: ProvideRuntimeApi + HeaderBackend + Send + Sync + 'static, - P::Api: ParachainHost + BlockBuilder + BabeApi, + P::Api: ParachainHost + + BlockBuilderApi + + BabeApi + + ApiExt, N: Network + Send + Sync + 'static, N::TableRouter: Send + 'static, ::Future: Send + 'static, diff --git a/validation/src/collation.rs b/validation/src/collation.rs index daccf4e7bfe2..a5df621658e3 100644 --- a/validation/src/collation.rs +++ b/validation/src/collation.rs @@ -98,7 +98,7 @@ impl CollationFetch { } impl Future for CollationFetch - where P::Api: ParachainHost, + where P::Api: ParachainHost, { type Item = (Collation, OutgoingMessages); type Error = C::Error; @@ -115,7 +115,12 @@ impl Future for CollationFetch futures::try_ready!(poll) }; - let res = validate_collation(&*self.client, &self.relay_parent, &collation, self.max_block_data_size); + let res = validate_collation( + &*self.client, + &self.relay_parent, + &collation, + self.max_block_data_size, + ); match res { Ok(e) => { @@ -388,7 +393,7 @@ pub fn validate_collation

( max_block_data_size: Option, ) -> Result where P: ProvideRuntimeApi, - P::Api: ParachainHost, + P::Api: ParachainHost, { use parachain::{IncomingMessage, ValidationParams}; diff --git a/validation/src/error.rs b/validation/src/error.rs index fd28080afb41..8c297ab8e1df 100644 --- a/validation/src/error.rs +++ b/validation/src/error.rs @@ -16,7 +16,6 @@ //! Errors that can occur during the validation process. -use runtime_primitives::RuntimeString; use polkadot_primitives::parachain::ValidatorId; /// Error type for validation @@ -38,7 +37,7 @@ pub enum Error { NotValidator(ValidatorId), /// Unexpected error checking inherents #[display(fmt = "Unexpected error while checking inherents: {}", _0)] - InherentError(RuntimeString), + InherentError(inherents::Error), /// Proposer destroyed before finishing proposing or evaluating #[display(fmt = "Proposer destroyed before finishing proposing or evaluating")] PrematureDestruction, diff --git a/validation/src/lib.rs b/validation/src/lib.rs index 8382ec0a0342..51736d34e559 100644 --- a/validation/src/lib.rs +++ b/validation/src/lib.rs @@ -34,7 +34,7 @@ use std::{collections::{HashMap, HashSet}, pin::Pin, sync::Arc, time::{self, Dur use babe_primitives::BabeApi; use client::{BlockchainEvents, BlockBody}; use client::blockchain::HeaderBackend; -use client::block_builder::api::BlockBuilder as BlockBuilderApi; +use block_builder::BlockBuilderApi; use client::error as client_error; use codec::Encode; use consensus::SelectChain; @@ -60,6 +60,7 @@ use inherents::InherentData; use runtime_babe::timestamp::TimestampInherentData; use log::{info, debug, warn, trace, error}; use keystore::KeyStorePtr; +use sr_api::ApiExt; type TaskExecutor = Arc + Send>> + Send + Sync>; @@ -249,7 +250,7 @@ impl ParachainValidation where C: Collators + Send + 'static, N: Network, P: ProvideRuntimeApi + HeaderBackend + BlockBody + Send + Sync + 'static, - P::Api: ParachainHost + BlockBuilderApi, + P::Api: ParachainHost + BlockBuilderApi + ApiExt, ::Future: Send + 'static, N::TableRouter: Send + 'static, ::Future: Send + 'static, @@ -433,7 +434,10 @@ impl ProposerFactory where ::Future: Send + 'static, P: BlockchainEvents + BlockBody, P: ProvideRuntimeApi + HeaderBackend + Send + Sync + 'static, - P::Api: ParachainHost + BlockBuilderApi + BabeApi, + P::Api: ParachainHost + + BlockBuilderApi + + BabeApi + + ApiExt, N: Network + Send + Sync + 'static, N::TableRouter: Send + 'static, ::Future: Send + 'static, @@ -489,7 +493,10 @@ impl consensus::Environment for ProposerFactory, P: ProvideRuntimeApi + HeaderBackend + BlockBody + Send + Sync + 'static, - P::Api: ParachainHost + BlockBuilderApi + BabeApi, + P::Api: ParachainHost + + BlockBuilderApi + + BabeApi + + ApiExt, ::Future: Send + 'static, N::TableRouter: Send + 'static, ::Future: Send + 'static, @@ -545,7 +552,7 @@ pub struct Proposer where impl consensus::Proposer for Proposer where TxApi: PoolChainApi, C: ProvideRuntimeApi + HeaderBackend + Send + Sync, - C::Api: ParachainHost + BlockBuilderApi, + C::Api: ParachainHost + BlockBuilderApi + ApiExt, { type Error = Error; type Create = Either, future::Ready>>; @@ -688,10 +695,10 @@ pub struct CreateProposal { impl CreateProposal where TxApi: PoolChainApi, C: ProvideRuntimeApi + HeaderBackend + Send + Sync, - C::Api: ParachainHost + BlockBuilderApi, + C::Api: ParachainHost + BlockBuilderApi + ApiExt, { fn propose_with(&mut self, candidates: Vec) -> Result { - use client::block_builder::BlockBuilder; + use block_builder::BlockBuilder; use runtime_primitives::traits::{Hash as HashT, BlakeTwo256}; const MAX_TRANSACTIONS: usize = 40; @@ -699,11 +706,18 @@ impl CreateProposal where let mut inherent_data = self.inherent_data .take() .expect("CreateProposal is not polled after finishing; qed"); - inherent_data.put_data(polkadot_runtime::NEW_HEADS_IDENTIFIER, &candidates).map_err(Error::InherentError)?; + inherent_data.put_data(polkadot_runtime::NEW_HEADS_IDENTIFIER, &candidates) + .map_err(Error::InherentError)?; let runtime_api = self.client.runtime_api(); - let mut block_builder = BlockBuilder::at_block(&self.parent_id, &*self.client, false, self.inherent_digests.clone())?; + let mut block_builder = BlockBuilder::new( + &*self.client, + self.client.expect_block_hash_from_id(&self.parent_id)?, + self.client.expect_block_number_from_id(&self.parent_id)?, + false, + self.inherent_digests.clone(), + )?; { let inherents = runtime_api.inherent_extrinsics(&self.parent_id, inherent_data)?; @@ -773,7 +787,7 @@ impl CreateProposal where impl futures03::Future for CreateProposal where TxApi: PoolChainApi, C: ProvideRuntimeApi + HeaderBackend + Send + Sync, - C::Api: ParachainHost + BlockBuilderApi, + C::Api: ParachainHost + BlockBuilderApi + ApiExt, { type Output = Result; diff --git a/validation/src/shared_table/mod.rs b/validation/src/shared_table/mod.rs index cc19b55ba25f..96ddadf68775 100644 --- a/validation/src/shared_table/mod.rs +++ b/validation/src/shared_table/mod.rs @@ -276,7 +276,7 @@ impl ParachainWork { > where P: Send + Sync + 'static, - P::Api: ParachainHost, + P::Api: ParachainHost, { let max_block_data_size = self.max_block_data_size; let validate = move |id: &_, collation: &_| { From 95c5bae6c4ac515d1f5fe061ef3b707937d52ad3 Mon Sep 17 00:00:00 2001 From: Gavin Wood Date: Sat, 9 Nov 2019 13:19:25 +0100 Subject: [PATCH 02/12] Bump substrate/version (#557) --- Cargo.toml | 2 +- availability-store/Cargo.toml | 2 +- cli/Cargo.toml | 6 +++++- collator/Cargo.toml | 2 +- erasure-coding/Cargo.toml | 2 +- executor/Cargo.toml | 2 +- network/Cargo.toml | 3 +-- parachain/Cargo.toml | 2 +- primitives/Cargo.toml | 6 +++--- rpc/Cargo.toml | 2 +- runtime/Cargo.toml | 10 +++------- service/Cargo.toml | 3 +-- statement-table/Cargo.toml | 2 +- test-parachains/adder/Cargo.toml | 2 +- test-parachains/halt/Cargo.toml | 2 +- validation/Cargo.toml | 2 +- 16 files changed, 24 insertions(+), 26 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bd52b2ccd46b..8e47c187d88d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ path = "src/main.rs" [package] name = "polkadot" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] build = "build.rs" edition = "2018" diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index 54b64b5ff6e7..bc383ecf7f43 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "polkadot-availability-store" description = "Persistent database for parachain data" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] edition = "2018" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 2383b547d273..20663798e9ae 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-cli" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] description = "Polkadot node implementation in Rust." edition = "2018" @@ -13,3 +13,7 @@ exit-future = "0.1" structopt = "0.3.3" cli = { package = "substrate-cli", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } service = { package = "polkadot-service", path = "../service" } + +[features] +default = [ "wasmtime" ] +wasmtime = [ "cli/wasmtime" ] diff --git a/collator/Cargo.toml b/collator/Cargo.toml index 403587d5c13f..3295ae32bd95 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-collator" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] description = "Collator node implementation" edition = "2018" diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 7c786ea1e80e..8079d2f3d286 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-erasure-coding" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] edition = "2018" diff --git a/executor/Cargo.toml b/executor/Cargo.toml index f272360cb50e..d45a179f4636 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-executor" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] description = "Polkadot node implementation in Rust." edition = "2018" diff --git a/network/Cargo.toml b/network/Cargo.toml index e1e0c4a09940..aebd06e71ed3 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-network" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] description = "Polkadot-specific networking protocol" edition = "2018" @@ -23,4 +23,3 @@ substrate-client = { git = "https://github.com/paritytech/substrate", branch = " [dev-dependencies] substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 6c52ec0359fb..7b9e392e1f21 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-parachain" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] description = "Types and utilities for creating and working with parachains" edition = "2018" diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 4fee8dffeca2..0cebf7c2d938 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-primitives" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] edition = "2018" @@ -9,7 +9,7 @@ serde = { version = "1.0", optional = true, features = ["derive"] } parity-scale-codec = { version = "1.0.5", default-features = false, features = ["bit-vec", "derive"] } primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -26,7 +26,7 @@ default = ["std"] std = [ "parity-scale-codec/std", "primitives/std", - "sr-api/std", + "substrate-client/std", "rstd/std", "sr-version/std", "runtime_primitives/std", diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 31e95b886712..63a1690bca59 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-rpc" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] edition = "2018" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 93dcaf51b475..953c5d89a783 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-runtime" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" @@ -16,7 +16,7 @@ serde_derive = { version = "1.0", optional = true } authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -27,8 +27,6 @@ substrate-primitives = { git = "https://github.com/paritytech/substrate", defaul substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -tx-pool-api = { package = "substrate-transaction-pool-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -block-builder-api = { package = "substrate-block-builder-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } authority-discovery = { package = "srml-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } authorship = { package = "srml-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -87,9 +85,7 @@ std = [ "inherents/std", "substrate-primitives/std", "polkadot-parachain/std", - "sr-api/std", - "tx-pool-api/std", - "block-builder-api/std", + "client/std", "offchain-primitives/std", "rstd/std", "sr-io/std", diff --git a/service/Cargo.toml b/service/Cargo.toml index 26ba4cf6dbc0..c302a0dce5f0 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-service" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] edition = "2018" @@ -20,7 +20,6 @@ polkadot-executor = { path = "../executor" } polkadot-network = { path = "../network" } polkadot-rpc = { path = "../rpc" } sr-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index c75eaeb1c720..effe668f76bd 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-statement-table" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] edition = "2018" diff --git a/test-parachains/adder/Cargo.toml b/test-parachains/adder/Cargo.toml index 023e75f59103..7c08a4575dd8 100644 --- a/test-parachains/adder/Cargo.toml +++ b/test-parachains/adder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adder" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] description = "Test parachain which adds to a number as its state transition" edition = "2018" diff --git a/test-parachains/halt/Cargo.toml b/test-parachains/halt/Cargo.toml index b9b66312e9de..c376110033f4 100644 --- a/test-parachains/halt/Cargo.toml +++ b/test-parachains/halt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "halt" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] description = "Test parachain which executes forever" edition = "2018" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 020d4c890258..7d2348a62fac 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-validation" -version = "0.6.10" +version = "0.6.12" authors = ["Parity Technologies "] edition = "2018" From 27acf1d0e9da512035ba73b0dae52b2d75b32a51 Mon Sep 17 00:00:00 2001 From: Gavin Wood Date: Sat, 9 Nov 2019 17:13:33 +0100 Subject: [PATCH 03/12] Bump version and Substrate (#560) * Bump version and Substrate * Bump version and Substrate --- Cargo.toml | 2 +- availability-store/Cargo.toml | 2 +- cli/Cargo.toml | 2 +- collator/Cargo.toml | 2 +- erasure-coding/Cargo.toml | 2 +- executor/Cargo.toml | 2 +- network/Cargo.toml | 2 +- parachain/Cargo.toml | 2 +- primitives/Cargo.toml | 2 +- rpc/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- service/Cargo.toml | 2 +- statement-table/Cargo.toml | 2 +- test-parachains/adder/Cargo.toml | 2 +- test-parachains/halt/Cargo.toml | 2 +- validation/Cargo.toml | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8e47c187d88d..ea7e012320f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ path = "src/main.rs" [package] name = "polkadot" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] build = "build.rs" edition = "2018" diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index bc383ecf7f43..e3fc3d94650a 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "polkadot-availability-store" description = "Persistent database for parachain data" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] edition = "2018" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 20663798e9ae..b4fe3ef948a1 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-cli" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] description = "Polkadot node implementation in Rust." edition = "2018" diff --git a/collator/Cargo.toml b/collator/Cargo.toml index 3295ae32bd95..e26ee665eb04 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-collator" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] description = "Collator node implementation" edition = "2018" diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 8079d2f3d286..1f745513bc2d 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-erasure-coding" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] edition = "2018" diff --git a/executor/Cargo.toml b/executor/Cargo.toml index d45a179f4636..c6b794c486ae 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-executor" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] description = "Polkadot node implementation in Rust." edition = "2018" diff --git a/network/Cargo.toml b/network/Cargo.toml index aebd06e71ed3..38e17a41b34c 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-network" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] description = "Polkadot-specific networking protocol" edition = "2018" diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 7b9e392e1f21..0d9bd35bada5 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-parachain" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] description = "Types and utilities for creating and working with parachains" edition = "2018" diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 0cebf7c2d938..ff608aa4c4dd 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-primitives" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] edition = "2018" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 63a1690bca59..768084f8dd9d 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-rpc" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] edition = "2018" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 953c5d89a783..e4d9e46b0bfb 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-runtime" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/service/Cargo.toml b/service/Cargo.toml index c302a0dce5f0..576d5e3fff9d 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-service" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] edition = "2018" diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index effe668f76bd..ad2eca6c0f45 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-statement-table" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] edition = "2018" diff --git a/test-parachains/adder/Cargo.toml b/test-parachains/adder/Cargo.toml index 7c08a4575dd8..276200f510af 100644 --- a/test-parachains/adder/Cargo.toml +++ b/test-parachains/adder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adder" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] description = "Test parachain which adds to a number as its state transition" edition = "2018" diff --git a/test-parachains/halt/Cargo.toml b/test-parachains/halt/Cargo.toml index c376110033f4..04e2fef9d3f1 100644 --- a/test-parachains/halt/Cargo.toml +++ b/test-parachains/halt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "halt" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] description = "Test parachain which executes forever" edition = "2018" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 7d2348a62fac..43f0b380367c 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-validation" -version = "0.6.12" +version = "0.6.13" authors = ["Parity Technologies "] edition = "2018" From 5c32c43a7d0a49510d74ace3e40fc2ba15fd9a33 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Sun, 10 Nov 2019 16:18:25 +0100 Subject: [PATCH 04/12] Bump versions --- Cargo.toml | 2 +- availability-store/Cargo.toml | 2 +- cli/Cargo.toml | 2 +- collator/Cargo.toml | 2 +- erasure-coding/Cargo.toml | 2 +- executor/Cargo.toml | 2 +- network/Cargo.toml | 2 +- parachain/Cargo.toml | 2 +- primitives/Cargo.toml | 2 +- rpc/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- service/Cargo.toml | 2 +- statement-table/Cargo.toml | 2 +- test-parachains/adder/Cargo.toml | 2 +- test-parachains/halt/Cargo.toml | 2 +- validation/Cargo.toml | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ea7e012320f5..0e212bac894f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ path = "src/main.rs" [package] name = "polkadot" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] build = "build.rs" edition = "2018" diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index e3fc3d94650a..e109bd6835ad 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "polkadot-availability-store" description = "Persistent database for parachain data" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] edition = "2018" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b4fe3ef948a1..6460b9e96aee 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-cli" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] description = "Polkadot node implementation in Rust." edition = "2018" diff --git a/collator/Cargo.toml b/collator/Cargo.toml index e26ee665eb04..57115f77223c 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-collator" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] description = "Collator node implementation" edition = "2018" diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 1f745513bc2d..a74978cf0255 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-erasure-coding" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] edition = "2018" diff --git a/executor/Cargo.toml b/executor/Cargo.toml index c6b794c486ae..3e75ff192b4a 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-executor" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] description = "Polkadot node implementation in Rust." edition = "2018" diff --git a/network/Cargo.toml b/network/Cargo.toml index 38e17a41b34c..58cdc1d06e82 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-network" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] description = "Polkadot-specific networking protocol" edition = "2018" diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 0d9bd35bada5..1bfa436f3777 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-parachain" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] description = "Types and utilities for creating and working with parachains" edition = "2018" diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index ff608aa4c4dd..84bd73bdfb13 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-primitives" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] edition = "2018" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 768084f8dd9d..64ea5ba733fb 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-rpc" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] edition = "2018" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index e4d9e46b0bfb..3317f46d99aa 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-runtime" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/service/Cargo.toml b/service/Cargo.toml index 576d5e3fff9d..54a078a940bf 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-service" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] edition = "2018" diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index ad2eca6c0f45..c1809618786e 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-statement-table" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] edition = "2018" diff --git a/test-parachains/adder/Cargo.toml b/test-parachains/adder/Cargo.toml index 276200f510af..33d09cf2d3c0 100644 --- a/test-parachains/adder/Cargo.toml +++ b/test-parachains/adder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adder" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] description = "Test parachain which adds to a number as its state transition" edition = "2018" diff --git a/test-parachains/halt/Cargo.toml b/test-parachains/halt/Cargo.toml index 04e2fef9d3f1..e3f975bf8500 100644 --- a/test-parachains/halt/Cargo.toml +++ b/test-parachains/halt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "halt" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] description = "Test parachain which executes forever" edition = "2018" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 43f0b380367c..06c157bd9beb 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-validation" -version = "0.6.13" +version = "0.6.15" authors = ["Parity Technologies "] edition = "2018" From 5c6d154f61f339a7a19978c9bc774a960e770d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Sun, 10 Nov 2019 20:50:22 +0000 Subject: [PATCH 05/12] bump substrate to release specific v0.6.15 --- availability-store/Cargo.toml | 2 +- cli/Cargo.toml | 2 +- collator/Cargo.toml | 10 +-- erasure-coding/Cargo.toml | 4 +- executor/Cargo.toml | 2 +- network/Cargo.toml | 10 +-- parachain/Cargo.toml | 4 +- primitives/Cargo.toml | 16 ++--- rpc/Cargo.toml | 12 ++-- runtime/Cargo.toml | 84 +++++++++++------------ service/Cargo.toml | 42 ++++++------ statement-table/Cargo.toml | 2 +- test-parachains/adder/Cargo.toml | 2 +- test-parachains/adder/collator/Cargo.toml | 4 +- validation/Cargo.toml | 8 +-- 15 files changed, 102 insertions(+), 102 deletions(-) diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index e109bd6835ad..c06de4cfd9d7 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -10,7 +10,7 @@ polkadot-primitives = { path = "../primitives" } parking_lot = "0.9.0" log = "0.4.6" codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } kvdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6460b9e96aee..b41a7e02e911 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -11,7 +11,7 @@ tokio = "0.1.7" futures = "0.1.17" exit-future = "0.1" structopt = "0.3.3" -cli = { package = "substrate-cli", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +cli = { package = "substrate-cli", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } service = { package = "polkadot-service", path = "../service" } [features] diff --git a/collator/Cargo.toml b/collator/Cargo.toml index 57115f77223c..d195b6d42ed5 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -8,10 +8,10 @@ edition = "2018" [dependencies] futures = "0.1.17" futures03 = { package = "futures-preview", version = "0.3.0-alpha.18", features = ["compat"] } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } polkadot-runtime = { path = "../runtime" } polkadot-primitives = { path = "../primitives" } polkadot-cli = { path = "../cli" } @@ -22,4 +22,4 @@ log = "0.4" tokio = "0.1.7" [dev-dependencies] -keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index a74978cf0255..83d5d345235b 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -8,5 +8,5 @@ edition = "2018" primitives = { package = "polkadot-primitives", path = "../primitives" } reed_solomon = { package = "reed-solomon-erasure", git = "https://github.com/paritytech/reed-solomon-erasure" } codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } diff --git a/executor/Cargo.toml b/executor/Cargo.toml index 3e75ff192b4a..ba7828d5fe28 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -6,5 +6,5 @@ description = "Polkadot node implementation in Rust." edition = "2018" [dependencies] -substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } polkadot-runtime = { path = "../runtime" } diff --git a/network/Cargo.toml b/network/Cargo.toml index 58cdc1d06e82..9d05d2dcdd26 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -12,14 +12,14 @@ av_store = { package = "polkadot-availability-store", path = "../availability-st polkadot-validation = { path = "../validation" } polkadot-primitives = { path = "../primitives" } codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } futures = "0.1" futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } log = "0.4" exit-future = "0.1.4" -substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } [dev-dependencies] -substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 1bfa436f3777..e3951fb37de4 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -10,8 +10,8 @@ codec = { package = "parity-scale-codec", version = "1.0.5", default-features = wasmi = { version = "0.4.3", optional = true } derive_more = { version = "0.14", optional = true } serde = { version = "1.0", default-features = false, features = [ "derive" ] } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15", default-features = false } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15", default-features = false } lazy_static = { version = "1.3.0", optional = true } parking_lot = { version = "0.7.1", optional = true } log = { version = "0.4.6", optional = true } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 84bd73bdfb13..2efb02778cb6 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -7,18 +7,18 @@ edition = "2018" [dependencies] serde = { version = "1.0", optional = true, features = ["derive"] } parity-scale-codec = { version = "1.0.5", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } polkadot-parachain = { path = "../parachain", default-features = false } bitvec = { version = "0.14.0", default-features = false, features = ["alloc"] } -babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } [dev-dependencies] -substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } pretty_assertions = "0.5.1" [features] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 64ea5ba733fb..2deafadce533 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -5,13 +5,13 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } jsonrpc-core = "14.0.3" polkadot-primitives = { path = "../primitives" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -srml-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -srml-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +srml-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +srml-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } polkadot-runtime = { path = "../runtime" } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 3317f46d99aa..4dfea06320fc 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -14,47 +14,47 @@ safe-mix = { version = "1.0", default-features = false} serde = { version = "1.0", default-features = false } serde_derive = { version = "1.0", optional = true } -authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-staking-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +sr-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +sr-staking-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -authority-discovery = { package = "srml-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -authorship = { package = "srml-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -balances = { package = "srml-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -transaction-payment = { package = "srml-transaction-payment", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -srml-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -collective = { package = "srml-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -democracy = { package = "srml-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -elections-phragmen = { package = "srml-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -executive = { package = "srml-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -finality-tracker = { package = "srml-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -grandpa = { package = "srml-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "polkadot-master" } -im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -indices = { package = "srml-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -membership = { package = "srml-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -nicks = { package = "srml-nicks", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -offences = { package = "srml-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -randomness-collective-flip = { package = "srml-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -session = { package = "srml-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -srml-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -staking = { package = "srml-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -srml-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sudo = { package = "srml-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -system = { package = "srml-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -system_rpc_runtime_api = { package = "srml-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -timestamp = { package = "srml-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -treasury = { package = "srml-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +authority-discovery = { package = "srml-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +authorship = { package = "srml-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +balances = { package = "srml-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +transaction-payment = { package = "srml-transaction-payment", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +srml-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +collective = { package = "srml-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +democracy = { package = "srml-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +elections-phragmen = { package = "srml-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +executive = { package = "srml-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +finality-tracker = { package = "srml-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +grandpa = { package = "srml-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "polkadot-v0.6.15" } +im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +indices = { package = "srml-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +membership = { package = "srml-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +nicks = { package = "srml-nicks", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +offences = { package = "srml-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +randomness-collective-flip = { package = "srml-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +session = { package = "srml-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +srml-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +staking = { package = "srml-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +srml-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +sudo = { package = "srml-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +system = { package = "srml-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +system_rpc_runtime_api = { package = "srml-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +timestamp = { package = "srml-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +treasury = { package = "srml-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } primitives = { package = "polkadot-primitives", path = "../primitives", default-features = false } polkadot-parachain = { path = "../parachain", default-features = false } @@ -63,8 +63,8 @@ polkadot-parachain = { path = "../parachain", default-features = false } hex-literal = "0.2.0" libsecp256k1 = "0.3.1" tiny-keccak = "1.4.2" -keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } trie-db = "0.15" serde_json = "1.0" diff --git a/service/Cargo.toml b/service/Cargo.toml index 54a078a940bf..1b3e98116894 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -19,24 +19,24 @@ polkadot-runtime = { path = "../runtime" } polkadot-executor = { path = "../executor" } polkadot-network = { path = "../network" } polkadot-rpc = { path = "../rpc" } -sr-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client-db = { package = "substrate-client-db", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -grandpa_primitives = { package = "substrate-finality-grandpa-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -service = { package = "substrate-service", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -telemetry = { package = "substrate-telemetry", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -srml-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -srml-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -authority-discovery = { package = "substrate-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -babe = { package = "substrate-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +client-db = { package = "substrate-client-db", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +grandpa_primitives = { package = "substrate-finality-grandpa-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +service = { package = "substrate-service", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +telemetry = { package = "substrate-telemetry", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +srml-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +srml-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +authority-discovery = { package = "substrate-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +babe = { package = "substrate-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index c1809618786e..81319ec92c42 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" [dependencies] codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/test-parachains/adder/Cargo.toml b/test-parachains/adder/Cargo.toml index 33d09cf2d3c0..2dcd16e3d2ef 100644 --- a/test-parachains/adder/Cargo.toml +++ b/test-parachains/adder/Cargo.toml @@ -13,7 +13,7 @@ tiny-keccak = "1.5.0" dlmalloc = { version = "0.1.3", features = [ "global" ] } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false, features = [ "no_global_allocator" ] } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15", default-features = false, features = [ "no_global_allocator" ] } [build-dependencies] wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.2" } diff --git a/test-parachains/adder/collator/Cargo.toml b/test-parachains/adder/collator/Cargo.toml index 540a3505eebd..194d1818dac7 100644 --- a/test-parachains/adder/collator/Cargo.toml +++ b/test-parachains/adder/collator/Cargo.toml @@ -9,8 +9,8 @@ adder = { path = ".." } parachain = { package = "polkadot-parachain", path = "../../../parachain" } collator = { package = "polkadot-collator", path = "../../../collator" } primitives = { package = "polkadot-primitives", path = "../../../primitives" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } parking_lot = "0.9.0" ctrlc = { version = "3.0", features = ["termination"] } futures = "0.1" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 06c157bd9beb..2688e1b06a45 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -30,9 +30,9 @@ block-builder = { package = "substrate-block-builder", git = "https://github.com trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } bitvec = { version = "0.14.0", default-features = false, features = ["alloc"] } -runtime_babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -keystore = { package = "substrate-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +runtime_babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +keystore = { package = "substrate-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } [dev-dependencies] -substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } From cae34fb2f48c31f42a9af237ddb3f52a3c6fda34 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 12 Nov 2019 00:33:46 +0100 Subject: [PATCH 06/12] Update lock --- Cargo.lock | 2610 ++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 1918 insertions(+), 692 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 782b46835bfb..571992bf4af7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,13 +1,22 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +[[package]] +name = "Inflector" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "adder" -version = "0.6.10" +version = "0.6.15" dependencies = [ "dlmalloc 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-parachain 0.6.10", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "polkadot-parachain 0.6.15", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -16,16 +25,16 @@ dependencies = [ name = "adder-collator" version = "0.1.0" dependencies = [ - "adder 0.6.10", + "adder 0.6.15", "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-collator 0.6.10", - "polkadot-parachain 0.6.10", - "polkadot-primitives 0.6.10", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "polkadot-collator 0.6.15", + "polkadot-parachain 0.6.15", + "polkadot-primitives 0.6.15", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] @@ -144,7 +153,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -194,6 +203,16 @@ dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "bincode" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "bindgen" version = "0.47.3" @@ -250,6 +269,16 @@ dependencies = [ "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "blake2b_simd" +version = "0.5.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "block-buffer" version = "0.7.3" @@ -435,18 +464,87 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "core-foundation" -version = "0.6.4" +name = "cranelift-bforest" +version = "0.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "core-foundation-sys" -version = "0.6.2" +name = "cranelift-codegen" +version = "0.46.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cranelift-bforest 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen-meta 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen-shared 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cranelift-codegen-meta" +version = "0.46.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cranelift-codegen-shared 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cranelift-codegen-shared" +version = "0.46.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cranelift-entity" +version = "0.46.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cranelift-frontend" +version = "0.46.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cranelift-native" +version = "0.46.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cranelift-wasm" +version = "0.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-frontend 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmparser 0.39.2 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "crc32fast" @@ -517,6 +615,14 @@ dependencies = [ "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "ct-logs" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "ctr" version = "0.3.2" @@ -598,6 +704,26 @@ dependencies = [ "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "directories" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "dirs-sys" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "dlmalloc" version = "0.1.3" @@ -702,6 +828,25 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "errno" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "errno-dragonfly" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "exit-future" version = "0.1.4" @@ -711,6 +856,20 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "faerie" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "goblin 0.0.24 (registry+https://github.com/rust-lang/crates.io-index)", + "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "scroll 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", + "string-interner 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "failure" version = "0.1.6" @@ -727,7 +886,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -736,6 +895,11 @@ name = "fake-simd" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "fallible-iterator" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "fdlimit" version = "0.1.1" @@ -744,6 +908,15 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "file-per-thread-logger" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "finality-grandpa" version = "0.9.1" @@ -794,22 +967,17 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "foreign-types" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" +name = "fork-tree" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ - "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "foreign-types-shared" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "fork-tree" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -849,6 +1017,29 @@ name = "futures" version = "0.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "futures" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-executor 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-channel" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "futures-channel-preview" version = "0.3.0-alpha.19" @@ -858,6 +1049,11 @@ dependencies = [ "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "futures-core-preview" version = "0.3.0-alpha.19" @@ -872,6 +1068,17 @@ dependencies = [ "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-executor" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "futures-executor-preview" version = "0.3.0-alpha.19" @@ -882,11 +1089,27 @@ dependencies = [ "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-io" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "futures-io-preview" version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "futures-macro" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "futures-preview" version = "0.3.0-alpha.19" @@ -900,11 +1123,21 @@ dependencies = [ "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-sink" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "futures-sink-preview" version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "futures-task" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "futures-timer" version = "0.4.0" @@ -915,6 +1148,24 @@ dependencies = [ "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-util" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-macro 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "futures-util-preview" version = "0.3.0-alpha.19" @@ -973,11 +1224,28 @@ dependencies = [ "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "gimli" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "glob" version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "glob" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "globset" version = "0.4.4" @@ -990,6 +1258,16 @@ dependencies = [ "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "goblin" +version = "0.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "plain 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "scroll 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "h2" version = "0.1.26" @@ -1009,7 +1287,7 @@ dependencies = [ [[package]] name = "halt" -version = "0.6.10" +version = "0.6.15" dependencies = [ "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1171,15 +1449,19 @@ dependencies = [ ] [[package]] -name = "hyper-tls" -version = "0.3.2" +name = "hyper-rustls" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "ct-logs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-rustls 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1225,7 +1507,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1333,7 +1615,7 @@ dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1963,13 +2245,21 @@ dependencies = [ "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "mach" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "malloc_size_of_derive" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2108,23 +2398,6 @@ dependencies = [ "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "native-tls" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)", - "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "net2" version = "0.2.33" @@ -2261,56 +2534,26 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "openssl" -version = "0.10.25" +name = "owning_ref" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "openssl-probe" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" +name = "parity-bytes" +version = "0.1.0" +source = "git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6#616b40150ded71f57f650067fcbc5c99d7c343e6" [[package]] -name = "openssl-sys" -version = "0.9.52" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", - "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "owning_ref" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parity-bytes" -version = "0.1.0" -source = "git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6#616b40150ded71f57f650067fcbc5c99d7c343e6" - -[[package]] -name = "parity-bytes" -version = "0.1.0" -source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" - -[[package]] -name = "parity-multiaddr" -version = "0.5.1" +name = "parity-bytes" +version = "0.1.0" +source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" + +[[package]] +name = "parity-multiaddr" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2498,7 +2741,7 @@ dependencies = [ "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2548,20 +2791,25 @@ name = "pkg-config" version = "0.3.16" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "plain" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "polkadot" -version = "0.6.10" +version = "0.6.15" dependencies = [ "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-cli 0.6.10", - "polkadot-service 0.6.10", + "polkadot-cli 0.6.15", + "polkadot-service 0.6.15", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-availability-store" -version = "0.6.10" +version = "0.6.15" dependencies = [ "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)", "kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)", @@ -2569,66 +2817,66 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-primitives 0.6.10", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "polkadot-primitives 0.6.15", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "polkadot-cli" -version = "0.6.10" +version = "0.6.15" dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-service 0.6.10", + "polkadot-service 0.6.15", "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-collator" -version = "0.6.10" +version = "0.6.15" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-cli 0.6.10", - "polkadot-network 0.6.10", - "polkadot-primitives 0.6.10", - "polkadot-runtime 0.6.10", - "polkadot-service 0.6.10", - "polkadot-validation 0.6.10", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "polkadot-cli 0.6.15", + "polkadot-network 0.6.15", + "polkadot-primitives 0.6.15", + "polkadot-runtime 0.6.15", + "polkadot-service 0.6.15", + "polkadot-validation 0.6.15", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-erasure-coding" -version = "0.6.10" +version = "0.6.15" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-primitives 0.6.10", + "polkadot-primitives 0.6.15", "reed-solomon-erasure 4.0.0 (git+https://github.com/paritytech/reed-solomon-erasure)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "polkadot-executor" -version = "0.6.10" +version = "0.6.15" dependencies = [ - "polkadot-runtime 0.6.10", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "polkadot-runtime 0.6.15", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "polkadot-network" -version = "0.6.10" +version = "0.6.15" dependencies = [ "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2637,127 +2885,127 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-availability-store 0.6.10", - "polkadot-primitives 0.6.10", - "polkadot-validation 0.6.10", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "polkadot-availability-store 0.6.15", + "polkadot-primitives 0.6.15", + "polkadot-validation 0.6.15", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "polkadot-parachain" -version = "0.6.10" +version = "0.6.15" dependencies = [ - "adder 0.6.10", + "adder 0.6.15", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "halt 0.6.10", + "halt 0.6.15", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "shared_memory 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-primitives" -version = "0.6.10" +version = "0.6.15" dependencies = [ "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-parachain 0.6.10", + "polkadot-parachain 0.6.15", "pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "polkadot-rpc" -version = "0.6.10" +version = "0.6.15" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-primitives 0.6.10", - "polkadot-runtime 0.6.10", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "polkadot-primitives 0.6.15", + "polkadot-runtime 0.6.15", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "polkadot-runtime" -version = "0.6.10" +version = "0.6.15" dependencies = [ "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-parachain 0.6.10", - "polkadot-primitives 0.6.10", + "polkadot-parachain 0.6.15", + "polkadot-primitives 0.6.15", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2765,7 +3013,7 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "0.6.10" +version = "0.6.15" dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2773,49 +3021,49 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-availability-store 0.6.10", - "polkadot-executor 0.6.10", - "polkadot-network 0.6.10", - "polkadot-primitives 0.6.10", - "polkadot-rpc 0.6.10", - "polkadot-runtime 0.6.10", - "polkadot-validation 0.6.10", + "polkadot-availability-store 0.6.15", + "polkadot-executor 0.6.15", + "polkadot-network 0.6.15", + "polkadot-primitives 0.6.15", + "polkadot-rpc 0.6.15", + "polkadot-runtime 0.6.15", + "polkadot-validation 0.6.15", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "polkadot-statement-table" -version = "0.6.10" +version = "0.6.15" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-primitives 0.6.10", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "polkadot-primitives 0.6.15", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "polkadot-validation" -version = "0.6.10" +version = "0.6.15" dependencies = [ "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2826,20 +3074,22 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-availability-store 0.6.10", - "polkadot-parachain 0.6.10", - "polkadot-primitives 0.6.10", - "polkadot-runtime 0.6.10", - "polkadot-statement-table 0.6.10", + "polkadot-availability-store 0.6.15", + "polkadot-parachain 0.6.15", + "polkadot-primitives 0.6.15", + "polkadot-runtime 0.6.15", + "polkadot-statement-table 0.6.15", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2886,7 +3136,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2896,9 +3146,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "proc-macro-nested" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "proc-macro2" version = "0.4.30" @@ -3155,6 +3410,16 @@ dependencies = [ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "raw-cpuid" +version = "6.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rayon" version = "1.2.0" @@ -3190,6 +3455,17 @@ name = "redox_syscall" version = "0.1.56" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "redox_users" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", + "rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "reed-solomon-erasure" version = "4.0.0" @@ -3214,6 +3490,17 @@ name = "regex-syntax" version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "region" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "mach 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "remove_dir_all" version = "0.5.2" @@ -3263,6 +3550,16 @@ dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "rust-argon2" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "blake2b_simd 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rustc-demangle" version = "0.1.16" @@ -3321,15 +3618,6 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "schannel" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "schnorrkel" version = "0.8.5" @@ -3357,31 +3645,31 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "sct" -version = "0.6.0" +name = "scroll" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "ring 0.16.9 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "scroll_derive 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "security-framework" -version = "0.3.1" +name = "scroll_derive" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "security-framework-sys" -version = "0.3.1" +name = "sct" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.16.9 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3417,7 +3705,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3595,22 +3883,48 @@ name = "spin" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "sr-api" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + [[package]] name = "sr-api-macros" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sr-api-proc-macro" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-arithmetic" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3620,28 +3934,59 @@ dependencies = [ "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "sr-arithmetic" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "sr-io" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "sr-io" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "sr-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3653,23 +3998,47 @@ dependencies = [ "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "sr-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "sr-staking-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "sr-std" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" + +[[package]] +name = "sr-std" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3677,7 +4046,7 @@ dependencies = [ [[package]] name = "sr-version" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3686,136 +4055,148 @@ dependencies = [ "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "sr-version" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "srml-authority-discovery" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-balances" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-collective" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-democracy" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-elections-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-executive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3827,78 +4208,93 @@ dependencies = [ "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "srml-finality-tracker" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "srml-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-im-online" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-indices" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-membership" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3906,116 +4302,127 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "srml-metadata" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "srml-nicks" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-offences" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-randomness-collective-flip" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-staking" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-staking-reward-curve" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-sudo" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-support" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4031,46 +4438,101 @@ dependencies = [ "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] +name = "srml-support" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-support-procedural" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "srml-support-procedural" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "srml-support-procedural-tools" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "srml-support-procedural-tools-derive" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-system" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4084,10 +4546,27 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "srml-system" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "srml-system-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4095,91 +4574,91 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-system-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-transaction-payment" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-transaction-payment-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-transaction-payment-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "srml-treasury" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] @@ -4208,6 +4687,14 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "string-interner" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "strsim" version = "0.8.0" @@ -4231,7 +4718,7 @@ dependencies = [ "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4253,7 +4740,7 @@ dependencies = [ [[package]] name = "substrate-application-crypto" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4262,10 +4749,22 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "substrate-application-crypto" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "substrate-authority-discovery" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4277,22 +4776,22 @@ dependencies = [ "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-authority-discovery-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] @@ -4306,36 +4805,60 @@ dependencies = [ "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-block-builder" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] +name = "substrate-block-builder-runtime-api" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + [[package]] name = "substrate-chain-spec" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-chain-spec-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-cli" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4353,17 +4876,17 @@ dependencies = [ "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4371,7 +4894,7 @@ dependencies = [ [[package]] name = "substrate-client" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4383,10 +4906,11 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4398,10 +4922,40 @@ dependencies = [ "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "substrate-client" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "substrate-client-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -4411,24 +4965,24 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-consensus-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4442,42 +4996,56 @@ dependencies = [ "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-consensus-babe-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "substrate-consensus-babe-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "substrate-consensus-common" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4493,10 +5061,29 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "substrate-consensus-common" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "substrate-consensus-slots" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4511,34 +5098,62 @@ dependencies = [ "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "substrate-consensus-slots" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "substrate-consensus-uncles" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-debug-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-debug-derive" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-executor" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4552,6 +5167,7 @@ dependencies = [ "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4559,10 +5175,42 @@ dependencies = [ "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-executor" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-frontend 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-native 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", + "wasmtime-jit 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", + "wasmtime-runtime 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", +] + [[package]] name = "substrate-externalities" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4570,10 +5218,21 @@ dependencies = [ "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "substrate-externalities" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "substrate-finality-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4599,44 +5258,108 @@ dependencies = [ "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-finality-grandpa" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-finality-grandpa-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] +name = "substrate-finality-grandpa-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-header-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "substrate-header-metadata" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "substrate-inherents" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] +name = "substrate-inherents" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-keyring" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4645,10 +5368,22 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "substrate-keyring" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "substrate-keystore" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4660,10 +5395,25 @@ dependencies = [ "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-keystore" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-network" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4690,6 +5440,7 @@ dependencies = [ "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4702,10 +5453,52 @@ dependencies = [ "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-network" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-offchain" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4713,35 +5506,44 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + +[[package]] +name = "substrate-panic-handler" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-panic-handler" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4750,7 +5552,20 @@ dependencies = [ [[package]] name = "substrate-peerset" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-peerset" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4763,17 +5578,56 @@ dependencies = [ [[package]] name = "substrate-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + +[[package]] +name = "substrate-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ + "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4796,11 +5650,11 @@ dependencies = [ "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4811,7 +5665,7 @@ dependencies = [ [[package]] name = "substrate-primitives-storage" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4819,10 +5673,21 @@ dependencies = [ "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] +[[package]] +name = "substrate-primitives-storage" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + [[package]] name = "substrate-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4832,23 +5697,23 @@ dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-rpc-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4861,25 +5726,25 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-rpc-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-rpc-servers" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4888,13 +5753,49 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + +[[package]] +name = "substrate-runtime-interface" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "static_assertions 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] +name = "substrate-runtime-interface-proc-macro" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "Inflector 0.11.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-serializer" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-serializer" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4903,7 +5804,7 @@ dependencies = [ [[package]] name = "substrate-service" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4917,23 +5818,23 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", "sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4943,29 +5844,29 @@ dependencies = [ [[package]] name = "substrate-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-state-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", ] [[package]] name = "substrate-state-machine" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4981,10 +5882,51 @@ dependencies = [ "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-state-machine" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-telemetry" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)", + "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-telemetry" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5006,7 +5948,7 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5018,25 +5960,66 @@ dependencies = [ ] [[package]] -name = "substrate-transaction-pool" +name = "substrate-transaction-graph" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + +[[package]] +name = "substrate-transaction-pool" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] +name = "substrate-transaction-pool" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", +] + +[[package]] +name = "substrate-transaction-pool-runtime-api" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-trie" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5047,6 +6030,20 @@ dependencies = [ "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-trie" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +dependencies = [ + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-wasm-builder-runner" version = "1.0.4" @@ -5055,7 +6052,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "substrate-wasm-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d8df977d024ebeb5330bacac64cf7193a7c242ed" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +dependencies = [ + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-wasm-interface" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" dependencies = [ "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5082,7 +6088,7 @@ dependencies = [ [[package]] name = "syn" -version = "1.0.7" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5097,7 +6103,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5118,6 +6124,16 @@ name = "take_mut" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "target-lexicon" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "target_info" version = "0.1.0" @@ -5622,7 +6638,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5654,7 +6670,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5674,7 +6690,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5731,6 +6747,95 @@ dependencies = [ "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "wasmparser" +version = "0.39.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "wasmtime-debug" +version = "0.2.0" +source = "git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6#71dd73d672deb325664e3c9cd4ee7acebed5fb95" +dependencies = [ + "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "faerie 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "gimli 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmparser 0.39.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", +] + +[[package]] +name = "wasmtime-environ" +version = "0.2.0" +source = "git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6#71dd73d672deb325664e3c9cd4ee7acebed5fb95" +dependencies = [ + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "directories 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "file-per-thread-logger 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "zstd 0.4.28+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wasmtime-jit" +version = "0.2.0" +source = "git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6#71dd73d672deb325664e3c9cd4ee7acebed5fb95" +dependencies = [ + "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-frontend 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmparser 0.39.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmtime-debug 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", + "wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", + "wasmtime-runtime 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", +] + +[[package]] +name = "wasmtime-runtime" +version = "0.2.0" +source = "git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6#71dd73d672deb325664e3c9cd4ee7acebed5fb95" +dependencies = [ + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "web-sys" version = "0.3.30" @@ -5752,6 +6857,14 @@ dependencies = [ "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "webpki-roots" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "webpki-roots" version = "0.18.0" @@ -5895,7 +7008,35 @@ name = "zeroize" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "zstd" +version = "0.4.28+zstd.1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "zstd-safe 1.4.13+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "zstd-safe" +version = "1.4.13+zstd.1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "zstd-sys 1.4.13+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "zstd-sys" +version = "1.4.13+zstd.1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + [metadata] +"checksum Inflector 0.11.4 (registry+https://github.com/rust-lang/crates.io-index)" = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" "checksum adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2" "checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" "checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" @@ -5917,12 +7058,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491" "checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" +"checksum bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b8ab639324e3ee8774d296864fbc0dbbb256cf1a41c490b94cba90c082915f92" "checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" "checksum bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead" "checksum bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9633b74910e1870f50f5af189b08487195cdb83c0e27a71d6f64d5e09dd0538b" "checksum blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330" "checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" +"checksum blake2b_simd 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b83b7baab1e671718d78204225800d6b170e648188ac7dc992e9d6bddf87d0c0" "checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" "checksum block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" "checksum block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09" @@ -5947,8 +7090,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7b641a8c9867e341f3295564203b1c250eb8ce6cb6126e007941f78c4d2ed7fe" "checksum const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c750ec12b83377637110d5a57f5ae08e895b06c4b16e2bdbf1a94ef717428c59" "checksum constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "995a44c877f9212528ccc74b21a232f66ad69001e40ede5bcee2ac9ef2657120" -"checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d" -"checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" +"checksum cranelift-bforest 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "18c97588946d3e5fe11f8e34ebf8cc65fd3fda50f3ffa2e80c98b2748058f00f" +"checksum cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3255935da50302bcb0f7109f2fef27f44b46f1c797dfa7db971379261023adcd" +"checksum cranelift-codegen-meta 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd57265ef5e6ff253c378b6261ed8c2e6cb1b15e91624540dbd09b1e5a40e9ca" +"checksum cranelift-codegen-shared 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c093398d21f9493ab29445191362592ef621f497e56a8efb15bdf80471978b7a" +"checksum cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e915fa58d2a75e3c4b768b7e4760282889915c3fcd9ccb2ad2b3ebec99654a78" +"checksum cranelift-frontend 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "46963952cda267bd0177b3f036e50038cd56e7b4c5b09a455b02df727e0f2a16" +"checksum cranelift-native 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7ba8a2d69ddd4729199a321bc2f4020e1969a088b468ed6a29dc7a69350be76e" +"checksum cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5a802357a6a016bf4c1dcdc6d73a650640eb3b613cc098a1a044a6c3731ca264" "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" "checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" "checksum crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71" @@ -5957,6 +7106,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" "checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" +"checksum ct-logs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113" "checksum ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736" "checksum ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c7dfd2d8b4c82121dfdff120f818e09fc4380b0b7e17a742081a89b94853e87f" "checksum cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f" @@ -5966,6 +7116,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a141330240c921ec6d074a3e188a7c7ef95668bb95e7d44fa0e5778ec2a7afe" "checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" "checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" +"checksum directories 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c" +"checksum dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "afa0b23de8fd801745c471deffa6e12d248f962c9fd4b4c33787b055599bde7b" "checksum dlmalloc 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f283302e035e61c23f2b86b3093e8c6273a4c3125742d6087e96ade001ca5e63" "checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" "checksum doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "923dea538cea0aa3025e8685b20d6ee21ef99c4f77e954a30febbaac5ec73a97" @@ -5978,40 +7130,56 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" "checksum environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "34f8467a0284de039e6bd0e25c14519538462ba5beb548bb1f03e645097837a8" "checksum erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "3beee4bc16478a1b26f2e80ad819a52d24745e292f521a63c16eea5f74b7eb60" +"checksum errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c2a071601ed01b988f896ab14b95e67335d1eeb50190932a1320f7fe3cadc84e" +"checksum errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067" "checksum exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48" +"checksum faerie 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "875d78b92b2a4d9e1e2c7eeccfa30a327d2ee6434db3beb8fd6fd92f41898bc4" "checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9" "checksum failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08" "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" +"checksum fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" "checksum fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ee15a7050e5580b3712877157068ea713b245b080ff302ae2ca973cfcd9baa" +"checksum file-per-thread-logger 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8505b75b31ef7285168dd237c4a7db3c1f3e0927e7d314e670bc98e854272fe9" "checksum finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34754852da8d86bc509715292c73140a5b678656d0b16132acd6737bdb5fd5f8" "checksum fixed-hash 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "72fe7539e2c5692c6989f2f9c0457e42f1e5768f96b85c87d273574670ae459f" "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" "checksum flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ad3c5233c9a940c8719031b423d7e6c16af66e031cb0420b0896f5245bf181d3" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" -"checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" -"checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" "checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" "checksum futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef" +"checksum futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b6f16056ecbb57525ff698bb955162d0cd03bee84e6241c27ff75c08d8ca5987" +"checksum futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fcae98ca17d102fd8a3603727b9259fcf7fa4239b603d2142926189bc8999b86" "checksum futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "d5e5f4df964fa9c1c2f8bddeb5c3611631cacd93baf810fc8bb2fb4b495c263a" +"checksum futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "79564c427afefab1dfb3298535b21eda083ef7935b4f0ecbfcb121f0aec10866" "checksum futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" +"checksum futures-executor 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1e274736563f686a837a0568b478bdabfeaec2dca794b5649b04e2fe1627c231" "checksum futures-executor-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "75236e88bd9fe88e5e8bfcd175b665d0528fe03ca4c5207fabc028c8f9d93e98" +"checksum futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e676577d229e70952ab25f3945795ba5b16d63ca794ca9d2c860e5595d20b5ff" "checksum futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "f4914ae450db1921a56c91bde97a27846287d062087d4a652efc09bb3a01ebda" +"checksum futures-macro 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "52e7c56c15537adb4f76d0b7a76ad131cb4d2f4f32d3b0bcabcbe1c7c5e87764" "checksum futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "3b1dce2a0267ada5c6ff75a8ba864b4e679a9e2aa44262af7a3b5516d530d76e" +"checksum futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "171be33efae63c2d59e6dbba34186fe0d6394fb378069a76dfd80fdcffd43c16" "checksum futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "86f148ef6b69f75bb610d4f9a2336d4fc88c4b5b67129d1a340dd0fd362efeec" +"checksum futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0bae52d6b29cf440e298856fec3965ee6fa71b06aa7495178615953fd669e5f9" "checksum futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "878f1d2fc31355fa02ed2372e741b0c17e58373341e6a122569b4623a14a7d33" +"checksum futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c0d66274fb76985d3c62c886d1da7ac4c0903a8c9f754e8fe0f35a6a6cc39e76" "checksum futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "5ce968633c17e5f97936bd2797b6e38fb56cf16a7422319f7ec2e30d3c470e8d" "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" "checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" "checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" "checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407" +"checksum gimli 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)" = "162d18ae5f2e3b90a993d202f1ba17a5633c2484426f8bcae201f86194bacd00" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" +"checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" +"checksum goblin 0.0.24 (registry+https://github.com/rust-lang/crates.io-index)" = "e3fa261d919c1ae9d1e4533c4a2f99e10938603c4208d56c05bec7a872b661b0" "checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" "checksum hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" "checksum hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" @@ -6030,7 +7198,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" "checksum hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)" = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6" -"checksum hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" +"checksum hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)" = "719d85c7df4a7f309a77d145340a063ea929dcb2e025bae46a80345cffec2952" "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" "checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" "checksum impl-codec 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53" @@ -6096,6 +7264,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" "checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" +"checksum mach 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "86dd2487cdfea56def77b88438a2c915fb45113c5319bfe7e14306ca4cd0b0e1" "checksum malloc_size_of_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e37c5d4cd9473c5f4c9c111f033f15d4df9bd378fdf615944e360a4f55a05f0b" "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" @@ -6112,7 +7281,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb04b9f127583ed176e163fb9ec6f3e793b87e21deedd5734a69386a18a0151" "checksum multistream-select 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1242e4ecf2060b35fb58002988e4720fbb3a2cbd4c136d369c420fa028f69efe" "checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" -"checksum native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum nix 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b7fd5681d13fda646462cfbd4e5f2051279a89a544d50eb98c365b507246839f" "checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" @@ -6129,9 +7297,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" "checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" -"checksum openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2f372b2b53ce10fb823a337aaa674e3a7d072b957c6264d0f4ff0bd86e657449" -"checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" -"checksum openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)" = "c977d08e1312e2f7e4b86f9ebaa0ed3b19d1daff75fae88bbb88108afbd801fc" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)" = "" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" @@ -6161,12 +7326,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f" "checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" "checksum pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = "72d5370d90f49f70bd033c3d75e87fc529fbfff9d6f7cccef07d6170079d91ea" +"checksum plain 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" "checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" "checksum pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3a029430f0d744bc3d15dd474d591bed2402b645d024583082b9f63bb936dac6" "checksum primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a0253db64c26d8b4e7896dd2063b516d2a1b9e0a5da26b5b78335f236d1e9522" "checksum proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e" "checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" "checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" +"checksum proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" "checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" "checksum prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96d14b1c185652833d24aaad41c5832b0be5616a590227c1fbff57c616754b23" @@ -6194,18 +7361,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" +"checksum raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "30a9d219c32c9132f7be513c18be77c9881c7107d2ab5569d205a6a0f0e6dc7d" "checksum rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "83a27732a533a1be0a0035a111fe76db89ad312f6f0347004c220c57f209a123" "checksum rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "98dcf634205083b17d0861252431eb2acbfb698ab7478a2d20de07954f47ec7b" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" +"checksum redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ecedbca3bf205f8d8f5c2b44d83cd0690e39ee84b951ed649e9f1841132b66d" "checksum reed-solomon-erasure 4.0.0 (git+https://github.com/paritytech/reed-solomon-erasure)" = "" "checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" "checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" +"checksum region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "448e868c6e4cfddfa49b6a72c95906c04e8547465e9536575b95c70a4044f856" "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" "checksum ring 0.16.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6747f8da1f2b1fabbee1aaa4eb8a11abf9adef0bf58a41cee45db5d59cecdfac" "checksum rocksdb 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "39be726e556e6f21d54d21cdf1be9f6df30c0411a5856c1abf3f4bb12498f2ed" "checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" "checksum rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f072d931f11a96546efd97642e1e75e807345aced86b947f9239102f262d0fcd" +"checksum rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ca4eaef519b494d1f2848fc602d18816fed808a981aedf4f1f00ceb7c9d32cf" "checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" "checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" "checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" @@ -6214,13 +7385,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9cbe61c20455d3015b2bb7be39e1872310283b8e5a52f5b242b0ac7581fe78" "checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" "checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" -"checksum schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "87f550b06b6cba9c8b8be3ee73f391990116bf527450d2556e9b9ce263b9a021" "checksum schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" = "eacd8381b3c37840c9c9f40472af529e49975bdcbc24f83c31059fd6539023d3" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" +"checksum scroll 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2f84d114ef17fd144153d608fba7c446b0145d038985e7a8cc5d08bb0ce20383" +"checksum scroll_derive 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8f1aa96c45e7f5a91cb7fabe7b279f02fea7126239fc40b732316e8b6a2d0fcb" "checksum sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c" -"checksum security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "eee63d0f4a9ec776eeb30e220f0bc1e092c3ad744b2a379e3993070364d3adc2" -"checksum security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9636f8989cbf61385ae4824b98c1aaa54c994d7d8b41f11c601ed799f0549a56" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" "checksum send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0eddf2e8f50ced781f288c19f18621fa72a3779e3cb58dbf23b07469b0abeb4" @@ -6244,108 +7414,155 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" -"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0fa13613355688665b68639b1c378a62dbedea78aff0fc59a4fa656cbbdec657" "checksum stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" +"checksum string-interner 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd710eadff449a1531351b0e43eb81ea404336fa2f56c777427ab0e32a4cf183" "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" "checksum structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4f66a4c0ddf7aee4677995697366de0749b0139057342eccbb609b12d0affc" "checksum structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8fe0c13e476b4e21ff7f5c4ace3818b6d7bdc16897c31c73862471bc1663acae" "checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" "checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" "checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3be511be555a3633e71739a79e4ddff6a6aaa6579fa6114182a51d72c3eb93c5" -"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" "checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" -"checksum syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0e7bedb3320d0f3035594b0b723c8a28d7d336a3eda3881db79e61d676fb644c" +"checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" "checksum synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f085a5855930c0441ca1288cf044ea4aecf4f43a91668abdb870b4ba546a203" "checksum sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d5bd3b813d94552a8033c650691645f8dd5a63d614dddd62428a95d3931ef7b6" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" +"checksum target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7975cb2c6f37d77b190bc5004a2bb015971464756fde9514651a525ada2a741a" "checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" "checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" @@ -6410,8 +7627,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f31d26deb2d9a37e6cfed420edce3ed604eab49735ba89035e13c98f9a528313" "checksum wasmi-validation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab380192444b3e8522ae79c0a1976e42a82920916ccdfbce3def89f456ea33f3" "checksum wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc0356e3df56e639fc7f7d8a99741915531e27ed735d911ed83d7e1339c8188" +"checksum wasmparser 0.39.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e5083b449454f7de0b15f131eee17de54b5a71dcb9adcf11df2b2f78fad0cd82" +"checksum wasmtime-debug 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)" = "" +"checksum wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)" = "" +"checksum wasmtime-jit 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)" = "" +"checksum wasmtime-runtime 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)" = "" "checksum web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)" = "0232f38e5c66384edaedaa726ae2d6313e3ed3ae860693c497a3193af3e161ce" "checksum webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e664e770ac0110e2384769bcc59ed19e329d81f555916a6e072714957b81b4" +"checksum webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a262ae37dd9d60f60dd473d1158f9fbebf110ba7b6a5051c8160460f6043718b" "checksum webpki-roots 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91cd5736df7f12a964a5067a12c62fa38e1bd8080aff1f80bc29be7c80d19ab4" "checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164" "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164" @@ -6430,3 +7653,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4090487fa66630f7b166fba2bbb525e247a5449f41c468cc1d98f8ae6ac03120" "checksum zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "45af6a010d13e4cf5b54c94ba5a2b2eba5596b9e46bf5875612d332a1f2b3f86" "checksum zeroize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cdc979d9b5ead18184c357c4d8a3f81b579aae264e32507223032e64715462d3" +"checksum zstd 0.4.28+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f4e716acaad66f2daf2526f37a1321674a8814c0b37a366ebe6c97a699f85ddc" +"checksum zstd-safe 1.4.13+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bfe4d3b26a0790201848865663e8ffabf091e126e548bc9710ccfa95621ece48" +"checksum zstd-sys 1.4.13+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fadc8ebe858f056ab82dffb9d93850b841603bdf663db7cf5e3dbd7f34cc55b2" From 1edf2874c935b68455e98eb207f0cbb6cdd691a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Mon, 11 Nov 2019 12:16:10 +0100 Subject: [PATCH 07/12] Prepare Polkadot update for Substrate runtime interface 2.0 (#563) * Prepare Polkadot update for Substrate runtime interface 2.0 * bump substrate to release specific v0.6.15 * Switch to `polkadot-master` * Version bump --- Cargo.toml | 2 +- availability-store/Cargo.toml | 4 +- cli/Cargo.toml | 4 +- collator/Cargo.toml | 12 ++-- erasure-coding/Cargo.toml | 6 +- executor/Cargo.toml | 4 +- network/Cargo.toml | 12 ++-- parachain/Cargo.toml | 6 +- primitives/Cargo.toml | 18 ++--- rpc/Cargo.toml | 14 ++-- runtime/Cargo.toml | 86 +++++++++++------------ runtime/src/claims.rs | 2 +- runtime/src/lib.rs | 1 - service/Cargo.toml | 44 ++++++------ statement-table/Cargo.toml | 4 +- test-parachains/adder/Cargo.toml | 6 +- test-parachains/adder/collator/Cargo.toml | 4 +- test-parachains/halt/Cargo.toml | 2 +- validation/Cargo.toml | 12 ++-- 19 files changed, 120 insertions(+), 123 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0e212bac894f..c66731d5b968 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ path = "src/main.rs" [package] name = "polkadot" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] build = "build.rs" edition = "2018" diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index c06de4cfd9d7..612d42f129ca 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "polkadot-availability-store" description = "Persistent database for parachain data" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] edition = "2018" @@ -10,7 +10,7 @@ polkadot-primitives = { path = "../primitives" } parking_lot = "0.9.0" log = "0.4.6" codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } kvdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b41a7e02e911..018d73822a6f 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-cli" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] description = "Polkadot node implementation in Rust." edition = "2018" @@ -11,7 +11,7 @@ tokio = "0.1.7" futures = "0.1.17" exit-future = "0.1" structopt = "0.3.3" -cli = { package = "substrate-cli", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +cli = { package = "substrate-cli", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } service = { package = "polkadot-service", path = "../service" } [features] diff --git a/collator/Cargo.toml b/collator/Cargo.toml index d195b6d42ed5..aa8ee0ccc205 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-collator" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] description = "Collator node implementation" edition = "2018" @@ -8,10 +8,10 @@ edition = "2018" [dependencies] futures = "0.1.17" futures03 = { package = "futures-preview", version = "0.3.0-alpha.18", features = ["compat"] } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } polkadot-runtime = { path = "../runtime" } polkadot-primitives = { path = "../primitives" } polkadot-cli = { path = "../cli" } @@ -22,4 +22,4 @@ log = "0.4" tokio = "0.1.7" [dev-dependencies] -keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 83d5d345235b..0d453e23aa7c 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-erasure-coding" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] edition = "2018" @@ -8,5 +8,5 @@ edition = "2018" primitives = { package = "polkadot-primitives", path = "../primitives" } reed_solomon = { package = "reed-solomon-erasure", git = "https://github.com/paritytech/reed-solomon-erasure" } codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/executor/Cargo.toml b/executor/Cargo.toml index ba7828d5fe28..d845f3316eac 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "polkadot-executor" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] description = "Polkadot node implementation in Rust." edition = "2018" [dependencies] -substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } polkadot-runtime = { path = "../runtime" } diff --git a/network/Cargo.toml b/network/Cargo.toml index 9d05d2dcdd26..f828ec49bff0 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-network" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] description = "Polkadot-specific networking protocol" edition = "2018" @@ -12,14 +12,14 @@ av_store = { package = "polkadot-availability-store", path = "../availability-st polkadot-validation = { path = "../validation" } polkadot-primitives = { path = "../primitives" } codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } futures = "0.1" futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } log = "0.4" exit-future = "0.1.4" -substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } [dev-dependencies] -substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index e3951fb37de4..c45328e1ea97 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-parachain" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] description = "Types and utilities for creating and working with parachains" edition = "2018" @@ -10,8 +10,8 @@ codec = { package = "parity-scale-codec", version = "1.0.5", default-features = wasmi = { version = "0.4.3", optional = true } derive_more = { version = "0.14", optional = true } serde = { version = "1.0", default-features = false, features = [ "derive" ] } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15", default-features = false } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15", default-features = false } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } lazy_static = { version = "1.3.0", optional = true } parking_lot = { version = "0.7.1", optional = true } log = { version = "0.4.6", optional = true } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 2efb02778cb6..ce212cbc314b 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -1,24 +1,24 @@ [package] name = "polkadot-primitives" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] edition = "2018" [dependencies] serde = { version = "1.0", optional = true, features = ["derive"] } parity-scale-codec = { version = "1.0.5", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } polkadot-parachain = { path = "../parachain", default-features = false } bitvec = { version = "0.14.0", default-features = false, features = ["alloc"] } -babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } [dev-dependencies] -substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } pretty_assertions = "0.5.1" [features] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 2deafadce533..a73894935185 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,17 +1,17 @@ [package] name = "polkadot-rpc" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] edition = "2018" [dependencies] -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } jsonrpc-core = "14.0.3" polkadot-primitives = { path = "../primitives" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -substrate-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -srml-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -srml-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +srml-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +srml-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } polkadot-runtime = { path = "../runtime" } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 4dfea06320fc..722d231b18ff 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-runtime" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" @@ -14,47 +14,47 @@ safe-mix = { version = "1.0", default-features = false} serde = { version = "1.0", default-features = false } serde_derive = { version = "1.0", optional = true } -authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -sr-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -sr-staking-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-staking-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -authority-discovery = { package = "srml-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -authorship = { package = "srml-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -balances = { package = "srml-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -transaction-payment = { package = "srml-transaction-payment", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -srml-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -collective = { package = "srml-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -democracy = { package = "srml-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -elections-phragmen = { package = "srml-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -executive = { package = "srml-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -finality-tracker = { package = "srml-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -grandpa = { package = "srml-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "polkadot-v0.6.15" } -im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -indices = { package = "srml-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -membership = { package = "srml-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -nicks = { package = "srml-nicks", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -offences = { package = "srml-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -randomness-collective-flip = { package = "srml-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -session = { package = "srml-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -srml-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -staking = { package = "srml-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -srml-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -sudo = { package = "srml-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -system = { package = "srml-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -system_rpc_runtime_api = { package = "srml-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -timestamp = { package = "srml-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -treasury = { package = "srml-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +authority-discovery = { package = "srml-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +authorship = { package = "srml-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +balances = { package = "srml-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +transaction-payment = { package = "srml-transaction-payment", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +srml-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +collective = { package = "srml-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +democracy = { package = "srml-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +elections-phragmen = { package = "srml-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +executive = { package = "srml-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +finality-tracker = { package = "srml-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +grandpa = { package = "srml-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "polkadot-master" } +im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +indices = { package = "srml-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +membership = { package = "srml-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +nicks = { package = "srml-nicks", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +offences = { package = "srml-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +randomness-collective-flip = { package = "srml-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +session = { package = "srml-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +srml-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +staking = { package = "srml-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +srml-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sudo = { package = "srml-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +system = { package = "srml-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +system_rpc_runtime_api = { package = "srml-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +timestamp = { package = "srml-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +treasury = { package = "srml-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } primitives = { package = "polkadot-primitives", path = "../primitives", default-features = false } polkadot-parachain = { path = "../parachain", default-features = false } @@ -63,8 +63,8 @@ polkadot-parachain = { path = "../parachain", default-features = false } hex-literal = "0.2.0" libsecp256k1 = "0.3.1" tiny-keccak = "1.4.2" -keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } trie-db = "0.15" serde_json = "1.0" diff --git a/runtime/src/claims.rs b/runtime/src/claims.rs index 3859376ac7ae..6f40d9c41b01 100644 --- a/runtime/src/claims.rs +++ b/runtime/src/claims.rs @@ -17,7 +17,7 @@ //! Module to process claims from Ethereum addresses. use rstd::prelude::*; -use sr_io::{keccak_256, secp256k1_ecdsa_recover}; +use sr_io::{hashing::keccak_256, crypto::secp256k1_ecdsa_recover}; use srml_support::{decl_event, decl_storage, decl_module}; use srml_support::traits::{Currency, Get}; use system::ensure_none; diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index c9c90e6d05ac..5dc8d99605a7 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -728,7 +728,6 @@ sr_api::impl_runtime_apis! { impl substrate_session::SessionKeys for Runtime { fn generate_session_keys(seed: Option>) -> Vec { - let seed = seed.as_ref().map(|s| rstd::str::from_utf8(&s).expect("Seed is an utf8 string")); SessionKeys::generate(seed) } } diff --git a/service/Cargo.toml b/service/Cargo.toml index 1b3e98116894..6e7142d13e2c 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-service" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] edition = "2018" @@ -19,24 +19,24 @@ polkadot-runtime = { path = "../runtime" } polkadot-executor = { path = "../executor" } polkadot-network = { path = "../network" } polkadot-rpc = { path = "../rpc" } -sr-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -client-db = { package = "substrate-client-db", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -grandpa_primitives = { package = "substrate-finality-grandpa-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -service = { package = "substrate-service", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -telemetry = { package = "substrate-telemetry", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -substrate-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -srml-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -srml-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } -authority-discovery = { package = "substrate-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -babe = { package = "substrate-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.6.15" } +sr-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client-db = { package = "substrate-client-db", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +grandpa_primitives = { package = "substrate-finality-grandpa-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +service = { package = "substrate-service", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +telemetry = { package = "substrate-telemetry", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +srml-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +srml-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +authority-discovery = { package = "substrate-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +babe = { package = "substrate-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index 81319ec92c42..b65ed0138657 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "polkadot-statement-table" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] edition = "2018" [dependencies] codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/test-parachains/adder/Cargo.toml b/test-parachains/adder/Cargo.toml index 2dcd16e3d2ef..edf2db190fa3 100644 --- a/test-parachains/adder/Cargo.toml +++ b/test-parachains/adder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adder" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] description = "Test parachain which adds to a number as its state transition" edition = "2018" @@ -13,10 +13,10 @@ tiny-keccak = "1.5.0" dlmalloc = { version = "0.1.3", features = [ "global" ] } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15", default-features = false, features = [ "no_global_allocator" ] } +runtime-io = { package = "sr-io", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false, features = [ "disable_allocator" ] } [build-dependencies] -wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.2" } +wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.4" } [features] default = [ "std" ] diff --git a/test-parachains/adder/collator/Cargo.toml b/test-parachains/adder/collator/Cargo.toml index 194d1818dac7..540a3505eebd 100644 --- a/test-parachains/adder/collator/Cargo.toml +++ b/test-parachains/adder/collator/Cargo.toml @@ -9,8 +9,8 @@ adder = { path = ".." } parachain = { package = "polkadot-parachain", path = "../../../parachain" } collator = { package = "polkadot-collator", path = "../../../collator" } primitives = { package = "polkadot-primitives", path = "../../../primitives" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } parking_lot = "0.9.0" ctrlc = { version = "3.0", features = ["termination"] } futures = "0.1" diff --git a/test-parachains/halt/Cargo.toml b/test-parachains/halt/Cargo.toml index e3f975bf8500..689753f369f2 100644 --- a/test-parachains/halt/Cargo.toml +++ b/test-parachains/halt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "halt" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] description = "Test parachain which executes forever" edition = "2018" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 2688e1b06a45..7b22078690f6 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-validation" -version = "0.6.15" +version = "0.6.16" authors = ["Parity Technologies "] edition = "2018" @@ -25,14 +25,12 @@ consensus = { package = "substrate-consensus-common", git = "https://github.com/ primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -block-builder = { package = "substrate-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } bitvec = { version = "0.14.0", default-features = false, features = ["alloc"] } -runtime_babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } -keystore = { package = "substrate-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +runtime_babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +keystore = { package = "substrate-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } [dev-dependencies] -substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.6.15" } +substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } From e7e1a30411b3c77bb108f94823b7a03af52e83a9 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 12 Nov 2019 00:50:34 +0100 Subject: [PATCH 08/12] Master backports --- Cargo.lock | 1707 +++++++++++++---------------------------- network/Cargo.toml | 1 + primitives/Cargo.toml | 4 +- runtime/Cargo.toml | 8 +- service/Cargo.toml | 1 + validation/Cargo.toml | 2 + 6 files changed, 535 insertions(+), 1188 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 571992bf4af7..a5b26329abb5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,12 +11,12 @@ dependencies = [ [[package]] name = "adder" -version = "0.6.15" +version = "0.6.16" dependencies = [ "dlmalloc 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-parachain 0.6.15", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "polkadot-parachain 0.6.16", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -25,16 +25,16 @@ dependencies = [ name = "adder-collator" version = "0.1.0" dependencies = [ - "adder 0.6.15", + "adder 0.6.16", "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-collator 0.6.15", - "polkadot-parachain 0.6.15", - "polkadot-primitives 0.6.15", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "polkadot-collator 0.6.16", + "polkadot-parachain 0.6.16", + "polkadot-primitives 0.6.16", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -974,14 +974,6 @@ dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "fork-tree" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "fs-swap" version = "0.2.4" @@ -1287,7 +1279,7 @@ dependencies = [ [[package]] name = "halt" -version = "0.6.15" +version = "0.6.16" dependencies = [ "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2798,18 +2790,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "polkadot" -version = "0.6.15" +version = "0.6.16" dependencies = [ "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-cli 0.6.15", - "polkadot-service 0.6.15", + "polkadot-cli 0.6.16", + "polkadot-service 0.6.16", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-availability-store" -version = "0.6.15" +version = "0.6.16" dependencies = [ "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)", "kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)", @@ -2817,66 +2809,66 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-primitives 0.6.15", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "polkadot-primitives 0.6.16", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "polkadot-cli" -version = "0.6.15" +version = "0.6.16" dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-service 0.6.15", + "polkadot-service 0.6.16", "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-collator" -version = "0.6.15" +version = "0.6.16" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-cli 0.6.15", - "polkadot-network 0.6.15", - "polkadot-primitives 0.6.15", - "polkadot-runtime 0.6.15", - "polkadot-service 0.6.15", - "polkadot-validation 0.6.15", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "polkadot-cli 0.6.16", + "polkadot-network 0.6.16", + "polkadot-primitives 0.6.16", + "polkadot-runtime 0.6.16", + "polkadot-service 0.6.16", + "polkadot-validation 0.6.16", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-erasure-coding" -version = "0.6.15" +version = "0.6.16" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-primitives 0.6.15", + "polkadot-primitives 0.6.16", "reed-solomon-erasure 4.0.0 (git+https://github.com/paritytech/reed-solomon-erasure)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "polkadot-executor" -version = "0.6.15" +version = "0.6.16" dependencies = [ - "polkadot-runtime 0.6.15", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "polkadot-runtime 0.6.16", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "polkadot-network" -version = "0.6.15" +version = "0.6.16" dependencies = [ "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2885,127 +2877,130 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-availability-store 0.6.15", - "polkadot-primitives 0.6.15", - "polkadot-validation 0.6.15", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "polkadot-availability-store 0.6.16", + "polkadot-primitives 0.6.16", + "polkadot-validation 0.6.16", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "polkadot-parachain" -version = "0.6.15" +version = "0.6.16" dependencies = [ - "adder 0.6.15", + "adder 0.6.16", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "halt 0.6.15", + "halt 0.6.16", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "shared_memory 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-primitives" -version = "0.6.15" +version = "0.6.16" dependencies = [ "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-parachain 0.6.15", + "polkadot-parachain 0.6.16", "pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "polkadot-rpc" -version = "0.6.15" +version = "0.6.16" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-primitives 0.6.15", - "polkadot-runtime 0.6.15", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "polkadot-primitives 0.6.16", + "polkadot-runtime 0.6.16", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "polkadot-runtime" -version = "0.6.15" +version = "0.6.16" dependencies = [ "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-parachain 0.6.15", - "polkadot-primitives 0.6.15", + "polkadot-parachain 0.6.16", + "polkadot-primitives 0.6.16", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3013,7 +3008,7 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "0.6.15" +version = "0.6.16" dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3021,49 +3016,50 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-availability-store 0.6.15", - "polkadot-executor 0.6.15", - "polkadot-network 0.6.15", - "polkadot-primitives 0.6.15", - "polkadot-rpc 0.6.15", - "polkadot-runtime 0.6.15", - "polkadot-validation 0.6.15", + "polkadot-availability-store 0.6.16", + "polkadot-executor 0.6.16", + "polkadot-network 0.6.16", + "polkadot-primitives 0.6.16", + "polkadot-rpc 0.6.16", + "polkadot-runtime 0.6.16", + "polkadot-validation 0.6.16", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "polkadot-statement-table" -version = "0.6.15" +version = "0.6.16" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-primitives 0.6.15", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "polkadot-primitives 0.6.16", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "polkadot-validation" -version = "0.6.15" +version = "0.6.16" dependencies = [ "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3074,22 +3070,22 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "polkadot-availability-store 0.6.15", - "polkadot-parachain 0.6.15", - "polkadot-primitives 0.6.15", - "polkadot-runtime 0.6.15", - "polkadot-statement-table 0.6.15", + "polkadot-availability-store 0.6.16", + "polkadot-parachain 0.6.16", + "polkadot-primitives 0.6.16", + "polkadot-runtime 0.6.16", + "polkadot-statement-table 0.6.16", "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3897,18 +3893,6 @@ dependencies = [ "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "sr-api-macros" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "sr-api-proc-macro" version = "2.0.0" @@ -3934,19 +3918,6 @@ dependencies = [ "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "sr-arithmetic" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "sr-io" version = "2.0.0" @@ -3965,24 +3936,6 @@ dependencies = [ "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "sr-io" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "sr-primitives" version = "2.0.0" @@ -4002,32 +3955,14 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "sr-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "sr-staking-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -4035,14 +3970,6 @@ name = "sr-std" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" -[[package]] -name = "sr-std" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "sr-version" version = "2.0.0" @@ -4055,142 +3982,130 @@ dependencies = [ "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "sr-version" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "srml-authority-discovery" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-balances" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-collective" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-democracy" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-elections-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-executive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -4208,87 +4123,72 @@ dependencies = [ "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "srml-finality-tracker" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "srml-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-im-online" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-indices" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-membership" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -4302,102 +4202,91 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "srml-metadata" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "srml-nicks" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-offences" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-randomness-collective-flip" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - -[[package]] + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] name = "srml-staking" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-staking-reward-curve" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4408,15 +4297,15 @@ dependencies = [ [[package]] name = "srml-sudo" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -4441,27 +4330,6 @@ dependencies = [ "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "srml-support" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "srml-support-procedural" version = "2.0.0" @@ -4473,18 +4341,6 @@ dependencies = [ "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "srml-support-procedural" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "srml-support-procedural-tools" version = "2.0.0" @@ -4497,18 +4353,6 @@ dependencies = [ "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "srml-support-procedural-tools" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "srml-support-procedural-tools-derive" version = "2.0.0" @@ -4519,16 +4363,6 @@ dependencies = [ "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "srml-support-procedural-tools-derive" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "srml-system" version = "2.0.0" @@ -4546,27 +4380,10 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "srml-system" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "srml-system-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4574,91 +4391,91 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-system-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-transaction-payment" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-transaction-payment-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-transaction-payment-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "srml-treasury" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -4749,22 +4566,10 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-application-crypto" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-authority-discovery" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4776,22 +4581,22 @@ dependencies = [ "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-authority-discovery-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -4832,22 +4637,22 @@ dependencies = [ [[package]] name = "substrate-chain-spec" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-chain-spec-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4858,7 +4663,7 @@ dependencies = [ [[package]] name = "substrate-cli" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4876,17 +4681,17 @@ dependencies = [ "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4922,40 +4727,10 @@ dependencies = [ "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-client" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-client-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -4965,24 +4740,24 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-consensus-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4996,22 +4771,24 @@ dependencies = [ "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -5028,20 +4805,6 @@ dependencies = [ "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-consensus-babe-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-consensus-common" version = "2.0.0" @@ -5061,25 +4824,6 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-consensus-common" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-consensus-slots" version = "2.0.0" @@ -5098,36 +4842,18 @@ dependencies = [ "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-consensus-slots" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-consensus-uncles" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -5140,21 +4866,16 @@ dependencies = [ "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-debug-derive" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-executor" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ + "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-frontend 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-native 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5173,35 +4894,6 @@ dependencies = [ "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-executor" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-frontend 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-native 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", "wasmtime-jit 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", "wasmtime-runtime 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", @@ -5219,20 +4911,9 @@ dependencies = [ ] [[package]] -name = "substrate-externalities" +name = "substrate-finality-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - -[[package]] -name = "substrate-finality-grandpa" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5258,35 +4939,6 @@ dependencies = [ "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-finality-grandpa" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-finality-grandpa-primitives" version = "2.0.0" @@ -5300,19 +4952,6 @@ dependencies = [ "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-finality-grandpa-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-header-metadata" version = "2.0.0" @@ -5323,16 +4962,6 @@ dependencies = [ "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-header-metadata" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-inherents" version = "2.0.0" @@ -5345,17 +4974,6 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-inherents" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-keyring" version = "2.0.0" @@ -5368,18 +4986,6 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-keyring" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-keystore" version = "2.0.0" @@ -5395,21 +5001,6 @@ dependencies = [ "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-keystore" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-network" version = "2.0.0" @@ -5453,52 +5044,10 @@ dependencies = [ "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-network" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-offchain" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5512,38 +5061,30 @@ dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - -[[package]] -name = "substrate-panic-handler" -version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ - "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-panic-handler" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5562,27 +5103,14 @@ dependencies = [ "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-peerset" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -5624,44 +5152,6 @@ dependencies = [ "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-primitives-storage" version = "2.0.0" @@ -5673,21 +5163,10 @@ dependencies = [ "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-primitives-storage" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5697,23 +5176,24 @@ dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-rpc-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5726,25 +5206,25 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-rpc-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-rpc-servers" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5753,7 +5233,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -5792,19 +5272,10 @@ dependencies = [ "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-serializer" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-service" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5818,23 +5289,25 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5844,23 +5317,22 @@ dependencies = [ [[package]] name = "substrate-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-state-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#d2c4b0dbd89d9588adcbe97320e27f49ee251411" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -5882,25 +5354,6 @@ dependencies = [ "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-state-machine" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-telemetry" version = "2.0.0" @@ -5923,28 +5376,6 @@ dependencies = [ "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-telemetry" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)", - "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-transaction-graph" version = "2.0.0" @@ -5959,20 +5390,6 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-transaction-graph" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-transaction-pool" version = "2.0.0" @@ -5990,22 +5407,6 @@ dependencies = [ "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "substrate-transaction-pool" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", -] - [[package]] name = "substrate-transaction-pool-runtime-api" version = "2.0.0" @@ -6030,20 +5431,6 @@ dependencies = [ "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-trie" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)", - "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-wasm-builder-runner" version = "1.0.4" @@ -6058,14 +5445,6 @@ dependencies = [ "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-wasm-interface" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15#8d5b83d616b79b58eea5a2046b08ff40cdbbbcea" -dependencies = [ - "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "subtle" version = "1.0.0" @@ -7146,7 +6525,6 @@ dependencies = [ "checksum flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ad3c5233c9a940c8719031b423d7e6c16af66e031cb0420b0896f5245bf181d3" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" @@ -7415,59 +6793,46 @@ dependencies = [ "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" "checksum sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum srml-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum srml-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum srml-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0fa13613355688665b68639b1c378a62dbedea78aff0fc59a4fa656cbbdec657" "checksum stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" @@ -7479,82 +6844,56 @@ dependencies = [ "checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" "checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" "checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3be511be555a3633e71739a79e4ddff6a6aaa6579fa6114182a51d72c3eb93c5" "checksum substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" -"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" +"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" "checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.6.15)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" diff --git a/network/Cargo.toml b/network/Cargo.toml index f828ec49bff0..cd92f728e8db 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -23,3 +23,4 @@ substrate-client = { git = "https://github.com/paritytech/substrate", branch = " [dev-dependencies] substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index ce212cbc314b..333a4595070f 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -9,7 +9,7 @@ serde = { version = "1.0", optional = true, features = ["derive"] } parity-scale-codec = { version = "1.0.5", default-features = false, features = ["bit-vec", "derive"] } primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -26,7 +26,7 @@ default = ["std"] std = [ "parity-scale-codec/std", "primitives/std", - "substrate-client/std", + "sr-api/std", "rstd/std", "sr-version/std", "runtime_primitives/std", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 722d231b18ff..0fe7b7befd53 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -16,7 +16,7 @@ serde_derive = { version = "1.0", optional = true } authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -27,6 +27,8 @@ substrate-primitives = { git = "https://github.com/paritytech/substrate", defaul substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +tx-pool-api = { package = "substrate-transaction-pool-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +block-builder-api = { package = "substrate-block-builder-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } authority-discovery = { package = "srml-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } authorship = { package = "srml-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -85,7 +87,9 @@ std = [ "inherents/std", "substrate-primitives/std", "polkadot-parachain/std", - "client/std", + "sr-api/std", + "tx-pool-api/std", + "block-builder-api/std", "offchain-primitives/std", "rstd/std", "sr-io/std", diff --git a/service/Cargo.toml b/service/Cargo.toml index 6e7142d13e2c..a4c02f7a81db 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -20,6 +20,7 @@ polkadot-executor = { path = "../executor" } polkadot-network = { path = "../network" } polkadot-rpc = { path = "../rpc" } sr-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 7b22078690f6..1779c8293d71 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -25,6 +25,8 @@ consensus = { package = "substrate-consensus-common", git = "https://github.com/ primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +block-builder = { package = "substrate-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } bitvec = { version = "0.14.0", default-features = false, features = ["alloc"] } From 595441d4a9047f333f5646a84a697b3abf364f7e Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 12 Nov 2019 00:53:13 +0100 Subject: [PATCH 09/12] Bump runtime --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 5dc8d99605a7..34077c55b725 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -95,7 +95,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("kusama"), impl_name: create_runtime_str!("parity-kusama"), authoring_version: 1, - spec_version: 1017, + spec_version: 1018, impl_version: 0, apis: RUNTIME_API_VERSIONS, }; From 4b8fb66488e72b9b04ea99a62dbd05465ca7ef02 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 12 Nov 2019 01:34:27 +0100 Subject: [PATCH 10/12] Fix tests --- network/src/gossip.rs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/network/src/gossip.rs b/network/src/gossip.rs index b15062113db6..59cc2edfb877 100644 --- a/network/src/gossip.rs +++ b/network/src/gossip.rs @@ -792,9 +792,9 @@ mod tests { { let mut message_allowed = validator.message_allowed(); - assert!(message_allowed(&peer_a, MessageIntent::Broadcast, &topic_a, &encoded)); - assert!(!message_allowed(&peer_a, MessageIntent::Broadcast, &topic_b, &encoded)); - assert!(!message_allowed(&peer_a, MessageIntent::Broadcast, &topic_c, &encoded)); + assert!(message_allowed(&peer_a, MessageIntent::broadcast(), &topic_a, &encoded)); + assert!(!message_allowed(&peer_a, MessageIntent::broadcast(), &topic_b, &encoded)); + assert!(!message_allowed(&peer_a, MessageIntent::broadcast(), &topic_c, &encoded)); } } @@ -900,7 +900,7 @@ mod tests { { let mut message_allowed = validator.message_allowed(); - assert!(!message_allowed(&peer_a, MessageIntent::Broadcast, &topic_a, &encoded[..])); + assert!(!message_allowed(&peer_a, MessageIntent::broadcast(), &topic_a, &encoded[..])); } validator @@ -913,7 +913,7 @@ mod tests { .note_aware_under_leaf(&hash_a, c_hash); { let mut message_allowed = validator.message_allowed(); - assert!(message_allowed(&peer_a, MessageIntent::Broadcast, &topic_a, &encoded[..])); + assert!(message_allowed(&peer_a, MessageIntent::broadcast(), &topic_a, &encoded[..])); } } @@ -1006,8 +1006,8 @@ mod tests { }).encode(); let mut allowed = validator.inner.message_allowed(); - assert!(allowed(&peer_a, MessageIntent::Broadcast, &root_a_topic, &message[..])); - assert!(!allowed(&peer_b, MessageIntent::Broadcast, &root_a_topic, &message[..])); + assert!(allowed(&peer_a, MessageIntent::broadcast(), &root_a_topic, &message[..])); + assert!(!allowed(&peer_b, MessageIntent::broadcast(), &root_a_topic, &message[..])); } } @@ -1077,8 +1077,8 @@ mod tests { }).encode(); let mut allowed = validator.inner.message_allowed(); - assert!(!allowed(&peer_a, MessageIntent::Broadcast, &root_a_topic, &message[..])); - assert!(!allowed(&peer_b, MessageIntent::Broadcast, &root_a_topic, &message[..])); + assert!(!allowed(&peer_a, MessageIntent::broadcast(), &root_a_topic, &message[..])); + assert!(!allowed(&peer_b, MessageIntent::broadcast(), &root_a_topic, &message[..])); } // peer A gets updated to the chain head. now we'll attempt to broadcast @@ -1115,8 +1115,8 @@ mod tests { }).encode(); let mut allowed = validator.inner.message_allowed(); - assert!(allowed(&peer_a, MessageIntent::Broadcast, &root_a_topic, &message[..])); - assert!(!allowed(&peer_b, MessageIntent::Broadcast, &root_a_topic, &message[..])); + assert!(allowed(&peer_a, MessageIntent::broadcast(), &root_a_topic, &message[..])); + assert!(!allowed(&peer_b, MessageIntent::broadcast(), &root_a_topic, &message[..])); } } From 12ff7f4c1d97e8d75f70859eb32d7d0d591a24dd Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 12 Nov 2019 01:48:09 +0100 Subject: [PATCH 11/12] Fix tests --- network/src/gossip.rs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/network/src/gossip.rs b/network/src/gossip.rs index 59cc2edfb877..35d19f2f2439 100644 --- a/network/src/gossip.rs +++ b/network/src/gossip.rs @@ -792,9 +792,9 @@ mod tests { { let mut message_allowed = validator.message_allowed(); - assert!(message_allowed(&peer_a, MessageIntent::broadcast(), &topic_a, &encoded)); - assert!(!message_allowed(&peer_a, MessageIntent::broadcast(), &topic_b, &encoded)); - assert!(!message_allowed(&peer_a, MessageIntent::broadcast(), &topic_c, &encoded)); + assert!(message_allowed(&peer_a, MessageIntent::Broadcast { previous_attempts: 0 }, &topic_a, &encoded)); + assert!(!message_allowed(&peer_a, MessageIntent::Broadcast { previous_attempts: 0 }, &topic_b, &encoded)); + assert!(!message_allowed(&peer_a, MessageIntent::Broadcast { previous_attempts: 0 }, &topic_c, &encoded)); } } @@ -900,7 +900,7 @@ mod tests { { let mut message_allowed = validator.message_allowed(); - assert!(!message_allowed(&peer_a, MessageIntent::broadcast(), &topic_a, &encoded[..])); + assert!(!message_allowed(&peer_a, MessageIntent::Broadcast { previous_attempts: 0 }, &topic_a, &encoded[..])); } validator @@ -913,7 +913,7 @@ mod tests { .note_aware_under_leaf(&hash_a, c_hash); { let mut message_allowed = validator.message_allowed(); - assert!(message_allowed(&peer_a, MessageIntent::broadcast(), &topic_a, &encoded[..])); + assert!(message_allowed(&peer_a, MessageIntent::Broadcast { previous_attempts: 0 }, &topic_a, &encoded[..])); } } @@ -1006,8 +1006,8 @@ mod tests { }).encode(); let mut allowed = validator.inner.message_allowed(); - assert!(allowed(&peer_a, MessageIntent::broadcast(), &root_a_topic, &message[..])); - assert!(!allowed(&peer_b, MessageIntent::broadcast(), &root_a_topic, &message[..])); + assert!(allowed(&peer_a, MessageIntent::Broadcast { previous_attempts: 0 }, &root_a_topic, &message[..])); + assert!(!allowed(&peer_b, MessageIntent::Broadcast { previous_attempts: 0 }, &root_a_topic, &message[..])); } } @@ -1077,8 +1077,8 @@ mod tests { }).encode(); let mut allowed = validator.inner.message_allowed(); - assert!(!allowed(&peer_a, MessageIntent::broadcast(), &root_a_topic, &message[..])); - assert!(!allowed(&peer_b, MessageIntent::broadcast(), &root_a_topic, &message[..])); + assert!(!allowed(&peer_a, MessageIntent::Broadcast { previous_attempts: 0 }, &root_a_topic, &message[..])); + assert!(!allowed(&peer_b, MessageIntent::Broadcast { previous_attempts: 0 }, &root_a_topic, &message[..])); } // peer A gets updated to the chain head. now we'll attempt to broadcast @@ -1115,8 +1115,8 @@ mod tests { }).encode(); let mut allowed = validator.inner.message_allowed(); - assert!(allowed(&peer_a, MessageIntent::broadcast(), &root_a_topic, &message[..])); - assert!(!allowed(&peer_b, MessageIntent::broadcast(), &root_a_topic, &message[..])); + assert!(allowed(&peer_a, MessageIntent::Broadcast { previous_attempts: 0 }, &root_a_topic, &message[..])); + assert!(!allowed(&peer_b, MessageIntent::Broadcast { previous_attempts: 0 }, &root_a_topic, &message[..])); } } From 9eb1650feefdbb70f0a2a63b44234552cff911e7 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 12 Nov 2019 02:07:27 +0100 Subject: [PATCH 12/12] Another fix. --- network/src/tests/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/src/tests/mod.rs b/network/src/tests/mod.rs index 08f807e11a69..b4d4dd50274b 100644 --- a/network/src/tests/mod.rs +++ b/network/src/tests/mod.rs @@ -57,7 +57,7 @@ impl Context for TestContext { } } - fn send_consensus(&mut self, _who: PeerId, _consensus: ConsensusMessage) { + fn send_consensus(&mut self, _who: PeerId, _consensus: Vec) { unimplemented!() }