From dd6def88dc4660dd21eb96d1088decc56bec15f3 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 20 Mar 2020 13:30:14 +0100 Subject: [PATCH 1/2] Updates for the new democracy --- runtime/kusama/src/lib.rs | 4 ++-- runtime/polkadot/src/lib.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index aca984757c61..4ebc473d5ce5 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -305,7 +305,7 @@ impl staking::Trait for Runtime { parameter_types! { pub const LaunchPeriod: BlockNumber = 7 * DAYS; pub const VotingPeriod: BlockNumber = 7 * DAYS; - pub const EmergencyVotingPeriod: BlockNumber = 3 * HOURS; + pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS; pub const MinimumDeposit: Balance = 1 * DOLLARS; pub const EnactmentPeriod: BlockNumber = 8 * DAYS; pub const CooloffPeriod: BlockNumber = 7 * DAYS; @@ -331,7 +331,7 @@ impl democracy::Trait for Runtime { /// Two thirds of the technical committee can have an ExternalMajority/ExternalDefault vote /// be tabled immediately and with a shorter voting/enactment period. type FastTrackOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, TechnicalCollective>; - type EmergencyVotingPeriod = EmergencyVotingPeriod; + type FastTrackVotingPeriod = FastTrackVotingPeriod; // To cancel a proposal which has been passed, 2/3 of the council must agree to it. type CancellationOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, CouncilCollective>; // Any single technical committee member may veto a coming council proposal, however they can diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 80a7e5e7756f..fa8980db1f99 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -308,7 +308,7 @@ impl staking::Trait for Runtime { parameter_types! { pub const LaunchPeriod: BlockNumber = 28 * DAYS; pub const VotingPeriod: BlockNumber = 28 * DAYS; - pub const EmergencyVotingPeriod: BlockNumber = 3 * HOURS; + pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS; pub const MinimumDeposit: Balance = 100 * DOLLARS; pub const EnactmentPeriod: BlockNumber = 8 * DAYS; pub const CooloffPeriod: BlockNumber = 7 * DAYS; @@ -334,7 +334,7 @@ impl democracy::Trait for Runtime { /// Two thirds of the technical committee can have an ExternalMajority/ExternalDefault vote /// be tabled immediately and with a shorter voting/enactment period. type FastTrackOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, TechnicalCollective>; - type EmergencyVotingPeriod = EmergencyVotingPeriod; + type FastTrackVotingPeriod = FastTrackVotingPeriod; // To cancel a proposal which has been passed, 2/3 of the council must agree to it. type CancellationOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, CouncilCollective>; // Any single technical committee member may veto a coming council proposal, however they can From 3c06299d24eb9ca485c2c18106a676b25829664b Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Sat, 21 Mar 2020 16:12:33 +0100 Subject: [PATCH 2/2] Introduce progressive democracy Also move to "master" branch of Substrate ready for continuous sync with Substrate master. --- Cargo.lock | 2336 ++++++++++----------- availability-store/Cargo.toml | 18 +- cli/Cargo.toml | 20 +- collator/Cargo.toml | 20 +- erasure-coding/Cargo.toml | 4 +- network/Cargo.toml | 18 +- network/test/Cargo.toml | 18 +- parachain/Cargo.toml | 14 +- primitives/Cargo.toml | 20 +- rpc/Cargo.toml | 14 +- runtime/common/Cargo.toml | 44 +- runtime/kusama/Cargo.toml | 96 +- runtime/kusama/src/lib.rs | 3 + runtime/polkadot/Cargo.toml | 90 +- runtime/polkadot/src/lib.rs | 3 + runtime/test-runtime/Cargo.toml | 66 +- runtime/test-runtime/client/Cargo.toml | 18 +- service/Cargo.toml | 70 +- statement-table/Cargo.toml | 2 +- test-parachains/adder/Cargo.toml | 2 +- test-parachains/adder/collator/Cargo.toml | 6 +- validation/Cargo.toml | 32 +- 22 files changed, 1460 insertions(+), 1454 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d1e779ce0b12..ea14040db4bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ dependencies = [ "dlmalloc 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.7.27", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -32,9 +32,9 @@ dependencies = [ "polkadot-collator 0.7.27", "polkadot-parachain 0.7.27", "polkadot-primitives 0.7.27", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] @@ -1138,7 +1138,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1146,91 +1146,91 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "frame-benchmarking-cli" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-cli 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-cli 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "frame-executive" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "frame-metadata" version = "11.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "frame-support" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-metadata 11.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-support-procedural 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-metadata 11.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-support-procedural 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "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 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (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.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-arithmetic 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-arithmetic 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "tracing 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "frame-support-procedural" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support-procedural-tools 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support-procedural-tools 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1239,9 +1239,9 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support-procedural-tools-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support-procedural-tools-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1251,7 +1251,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1261,26 +1261,26 @@ dependencies = [ [[package]] name = "frame-system" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "frame-system-rpc-runtime-api" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] @@ -2063,41 +2063,41 @@ name = "kusama-runtime" version = "0.7.27" dependencies = [ "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-executive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-executive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-collective 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-democracy 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-elections-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-identity 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-im-online 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-indices 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-membership 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-nicks 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-offences 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-randomness-collective-flip 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-recovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-society 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking-reward-curve 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-treasury 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-utility 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-vesting 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-collective 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-democracy 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-elections-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-identity 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-im-online 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-indices 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-membership 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-nicks 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-offences 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-randomness-collective-flip 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-recovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-society 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-staking-reward-curve 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-transaction-payment 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-treasury 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-utility 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-vesting 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.7.27", "polkadot-primitives 0.7.27", @@ -2106,22 +2106,22 @@ dependencies = [ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "substrate-wasm-builder-runner 1.0.5 (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.20.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3051,328 +3051,328 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-authorship" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-babe" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-balances" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-collective" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-democracy" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-elections-phragmen" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-finality-tracker" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-grandpa" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-finality-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-finality-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-identity" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "enumflags2 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-im-online" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-indices" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-membership" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-nicks" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-offences" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-recovery" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "enumflags2 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-session" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-society" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-staking" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-staking-reward-curve" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3383,120 +3383,120 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-timestamp" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-transaction-payment" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-treasury" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-utility" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "pallet-vesting" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "enumflags2 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] @@ -3779,15 +3779,15 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-erasure-coding 0.7.27", "polkadot-primitives 0.7.27", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "tokio 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3795,20 +3795,20 @@ dependencies = [ name = "polkadot-cli" version = "0.7.27" dependencies = [ - "frame-benchmarking-cli 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-benchmarking-cli 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "futures 0.3.4 (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.7.27", - "sc-cli 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-cli 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-browser-utils 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-browser-utils 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "tokio 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3827,16 +3827,16 @@ dependencies = [ "polkadot-primitives 0.7.27", "polkadot-service 0.7.27", "polkadot-validation 0.7.27", - "sc-cli 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-cli 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "tokio 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3848,8 +3848,8 @@ dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-primitives 0.7.27", "reed-solomon-erasure 4.0.0 (git+https://github.com/paritytech/reed-solomon-erasure)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] @@ -3869,15 +3869,15 @@ dependencies = [ "polkadot-erasure-coding 0.7.27", "polkadot-primitives 0.7.27", "polkadot-validation 0.7.27", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network-gossip 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network-gossip 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasm-timer 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3892,15 +3892,15 @@ dependencies = [ "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-test-runtime-client 2.0.0", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network-test 0.8.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network-test 0.8.0-dev (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] @@ -3914,15 +3914,15 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "shared_memory 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3931,20 +3931,20 @@ name = "polkadot-primitives" version = "0.7.27" dependencies = [ "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.7.27", "pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-serializer 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-serializer 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] @@ -3952,15 +3952,15 @@ name = "polkadot-rpc" version = "0.7.27" dependencies = [ "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-transaction-payment-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-primitives 0.7.27", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-frame-rpc-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-frame-rpc-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] @@ -3968,39 +3968,39 @@ name = "polkadot-runtime" version = "0.7.27" dependencies = [ "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-executive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-executive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-collective 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-democracy 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-elections-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-identity 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-im-online 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-indices 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-membership 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-nicks 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-offences 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-randomness-collective-flip 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking-reward-curve 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-sudo 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-treasury 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-vesting 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-collective 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-democracy 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-elections-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-identity 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-im-online 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-indices 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-membership 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-nicks 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-offences 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-randomness-collective-flip 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-staking-reward-curve 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-sudo 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-transaction-payment 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-treasury 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-vesting 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.7.27", "polkadot-primitives 0.7.27", @@ -4009,21 +4009,21 @@ dependencies = [ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "substrate-wasm-builder-runner 1.0.5 (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.20.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4034,22 +4034,22 @@ name = "polkadot-runtime-common" version = "0.7.27" dependencies = [ "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-randomness-collective-flip 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking-reward-curve 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-treasury 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-vesting 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-randomness-collective-flip 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-staking-reward-curve 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-treasury 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-vesting 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.7.27", "polkadot-primitives 0.7.27", @@ -4057,15 +4057,15 @@ dependencies = [ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "trie-db 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4073,17 +4073,17 @@ dependencies = [ name = "polkadot-service" version = "0.7.27" dependencies = [ - "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "kusama-runtime 0.7.27", "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)", - "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-im-online 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-im-online 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (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.7.27", @@ -4093,37 +4093,37 @@ dependencies = [ "polkadot-runtime 0.7.27", "polkadot-test-runtime-client 2.0.0", "polkadot-validation 0.7.27", - "sc-authority-discovery 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-chain-spec 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-finality-grandpa 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-authority-discovery 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-chain-spec 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-finality-grandpa 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-finality-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-finality-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] @@ -4132,7 +4132,7 @@ version = "0.7.27" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-primitives 0.7.27", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] @@ -4140,28 +4140,28 @@ name = "polkadot-test-runtime" version = "0.7.27" dependencies = [ "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-executive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-executive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-indices 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-nicks 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-randomness-collective-flip 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking-reward-curve 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-vesting 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-indices 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-nicks 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-randomness-collective-flip 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-staking-reward-curve 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-transaction-payment 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-vesting 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.7.27", "polkadot-primitives 0.7.27", @@ -4170,20 +4170,20 @@ dependencies = [ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "substrate-wasm-builder-runner 1.0.5 (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.20.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4196,15 +4196,15 @@ dependencies = [ "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-test-runtime 0.7.27", - "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-test-client 2.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-test-runtime 2.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-test-client 2.0.0-dev (git+https://github.com/paritytech/substrate)", + "substrate-test-runtime 2.0.0-dev (git+https://github.com/paritytech/substrate)", ] [[package]] @@ -4217,7 +4217,7 @@ dependencies = [ "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (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.7.27", @@ -4225,21 +4225,21 @@ dependencies = [ "polkadot-parachain 0.7.27", "polkadot-primitives 0.7.27", "polkadot-statement-table 0.7.27", - "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-finality-grandpa 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-finality-grandpa 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "tokio 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4872,7 +4872,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4884,53 +4884,53 @@ dependencies = [ "prost 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "prost-build 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-block-builder" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-chain-spec" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-chain-spec-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-chain-spec-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-chain-spec-derive" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4941,7 +4941,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" 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)", @@ -4958,21 +4958,21 @@ dependencies = [ "parity-util-mem 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "rpassword 4.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-informant 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-tracing 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-informant 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-tracing 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-panic-handler 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-panic-handler 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4980,7 +4980,7 @@ dependencies = [ [[package]] name = "sc-client" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4991,30 +4991,30 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "tracing 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-client-api" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5025,28 +5025,28 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-storage 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-storage 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-client-db" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5058,26 +5058,26 @@ dependencies = [ "parity-util-mem 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-state-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-state-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-consensus-babe" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "fork-tree 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5089,81 +5089,81 @@ dependencies = [ "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-consensus-epochs 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-consensus-slots 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-consensus-uncles 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-consensus-epochs 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-consensus-slots 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-consensus-uncles 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "schnorrkel 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-consensus-epochs" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "fork-tree 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "fork-tree 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-consensus-slots" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 3.0.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.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-consensus-uncles" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-executor" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5172,78 +5172,78 @@ dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.41.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-executor-common 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-executor-wasmi 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-executor-wasmtime 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-panic-handler 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-serializer 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-executor-common 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-executor-wasmi 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-executor-wasmtime 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-panic-handler 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-serializer 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-executor-common" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.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.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-allocator 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-serializer 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-allocator 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-serializer 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-executor-wasmi" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.41.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-executor-common 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-allocator 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-executor-common 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-allocator 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-executor-wasmtime" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.41.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-executor-common 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-executor-common 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "scoped-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-allocator 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-allocator 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "substrate-wasmtime 0.13.0-threadsafe.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-finality-grandpa" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "finality-grandpa 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "fork-tree 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5251,62 +5251,62 @@ dependencies = [ "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network-gossip 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network-gossip 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-arithmetic 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-finality-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-arithmetic 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-finality-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-informant" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-util-mem 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasm-timer 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-keystore" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-network" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5314,7 +5314,7 @@ dependencies = [ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "erased-serde 0.3.10 (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-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "fork-tree 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures_codec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5331,22 +5331,22 @@ dependencies = [ "prost-build 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-peerset 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-peerset 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (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.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-arithmetic 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-arithmetic 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "thiserror 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5357,22 +5357,22 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.16.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasm-timer 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-network-test" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5381,24 +5381,24 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-test-runtime 2.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-test-runtime-client 2.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-test-runtime 2.0.0-dev (git+https://github.com/paritytech/substrate)", + "substrate-test-runtime-client 2.0.0-dev (git+https://github.com/paritytech/substrate)", "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-offchain" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5411,20 +5411,20 @@ dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-peerset" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.16.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5436,7 +5436,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5445,29 +5445,29 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-rpc-api 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-rpc-api 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-rpc-api" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5480,17 +5480,17 @@ dependencies = [ "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-rpc-server" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5499,13 +5499,13 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-service" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5519,32 +5519,32 @@ dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-util-mem 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-chain-spec 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-rpc-server 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-tracing 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-chain-spec 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-rpc-server 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-tracing 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "sysinfo 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tracing 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5554,21 +5554,21 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-util-mem 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-util-mem-derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sc-telemetry" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5590,12 +5590,12 @@ dependencies = [ [[package]] name = "sc-tracing" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "erased-serde 0.3.10 (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.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5605,7 +5605,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5614,17 +5614,17 @@ dependencies = [ "parity-util-mem 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasm-timer 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-transaction-pool" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5634,13 +5634,13 @@ dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-util-mem 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-transaction-graph 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-transaction-graph 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasm-timer 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5975,34 +5975,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sp-allocator" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-api" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api-proc-macro 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api-proc-macro 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-api-proc-macro" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" 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)", @@ -6014,83 +6014,83 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-arithmetic" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "integer-sqrt 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-debug-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-debug-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-authority-discovery" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-authorship" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-block-builder" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-blockchain" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-consensus" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6101,48 +6101,48 @@ dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-consensus-aura" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-consensus-babe" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-core" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" 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)", @@ -6167,11 +6167,11 @@ dependencies = [ "schnorrkel 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-debug-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-storage 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-debug-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-storage 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "substrate-bip39 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-bip39 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6183,7 +6183,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6193,90 +6193,90 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "environmental 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-storage 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-storage 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-finality-grandpa" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-finality-tracker" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-inherents" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-io" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.5 (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.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-keyring" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "strum 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sp-offchain" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-panic-handler" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "backtrace 0.3.43 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6285,26 +6285,26 @@ dependencies = [ [[package]] name = "sp-phragmen" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-rpc" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-runtime" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "hash256-std-hasher 0.15.2 (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)", @@ -6314,32 +6314,32 @@ dependencies = [ "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-arithmetic 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-arithmetic 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-runtime-interface" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime-interface-proc-macro 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime-interface-proc-macro 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sp-runtime-interface-proc-macro" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" 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)", @@ -6351,7 +6351,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6360,28 +6360,28 @@ dependencies = [ [[package]] name = "sp-session" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-staking" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-state-machine" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" 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)", @@ -6389,10 +6389,10 @@ dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-panic-handler 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-panic-handler 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "trie-db 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -6400,57 +6400,57 @@ dependencies = [ [[package]] name = "sp-std" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" [[package]] name = "sp-storage" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-debug-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-debug-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-timestamp" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasm-timer 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sp-transaction-pool" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.4 (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.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-trie" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "trie-db 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -6458,23 +6458,23 @@ dependencies = [ [[package]] name = "sp-version" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "sp-wasm-interface" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -6577,7 +6577,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6592,10 +6592,10 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-chain-spec 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-informant 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-chain-spec 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-informant 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -6603,28 +6603,28 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "2.0.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ - "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.5 (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.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "substrate-prometheus-endpoint" version = "0.8.0-alpha.4" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "async-std 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6638,84 +6638,84 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", ] [[package]] name = "substrate-test-runtime" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-executive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-executive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-util-mem 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus-aura 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-wasm-builder-runner 1.0.5 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus-aura 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-wasm-builder-runner 1.0.5 (git+https://github.com/paritytech/substrate)", "trie-db 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-test-runtime-client" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" dependencies = [ "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-test-client 2.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-test-runtime 2.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)", + "substrate-test-client 2.0.0-dev (git+https://github.com/paritytech/substrate)", + "substrate-test-runtime 2.0.0-dev (git+https://github.com/paritytech/substrate)", ] [[package]] name = "substrate-wasm-builder-runner" version = "1.0.5" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#93cf07ad527c5209ba8b75615f0ec69d40cb76da" +source = "git+https://github.com/paritytech/substrate#2eb9c260a2eef339d1f7ce119008b2bca45a50bc" [[package]] name = "substrate-wasm-builder-runner" @@ -7969,17 +7969,17 @@ dependencies = [ "checksum fixedbitset 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d" "checksum flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6bd6d6f4752952feb71363cffc9ebac9411b75b87c6ab6058c40c8900cf43c0f" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" -"checksum fork-tree 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-benchmarking-cli 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-executive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-metadata 11.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-support-procedural 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-support-procedural-tools 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-support-procedural-tools-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum fork-tree 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum frame-benchmarking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum frame-benchmarking-cli 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum frame-executive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum frame-metadata 11.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum frame-support 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum frame-support-procedural 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum frame-support-procedural-tools 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum frame-support-procedural-tools-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum frame-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum frame-system-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" @@ -8141,35 +8141,35 @@ dependencies = [ "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" -"checksum pallet-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-collective 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-democracy 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-elections-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-identity 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-im-online 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-indices 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-membership 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-nicks 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-offences 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-randomness-collective-flip 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-recovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-society 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-staking-reward-curve 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-sudo 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-transaction-payment 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-transaction-payment-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-treasury 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-utility 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-vesting 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-babe 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-balances 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-collective 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-democracy 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-elections-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-identity 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-im-online 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-indices 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-membership 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-nicks 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-offences 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-randomness-collective-flip 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-recovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-society 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-staking-reward-curve 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-sudo 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-transaction-payment 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-transaction-payment-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-transaction-payment-rpc-runtime-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-treasury 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-utility 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum pallet-vesting 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" "checksum parity-bytes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0c276d76c5333b8c2579e02d49a06733a55b8282d2d9b13e8d53b6406bd7e30a" "checksum parity-multiaddr 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f77055f9e81921a8cc7bebeb6cded3d128931d51f1e3dd6251f0770a6d431477" "checksum parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7a1cd2ba02391b81367bec529fb209019d718684fdc8ad6a712c2b536e46f775" @@ -8267,39 +8267,39 @@ dependencies = [ "checksum safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c" "checksum salsa20 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2324b0e8c3bb9a586a571fdb3136f70e7e2c748de00a78043f86e0cff91f91fe" "checksum salsa20-core 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2fe6cc1b9f5a5867853ade63099de70f042f7679e408d1ffe52821c9248e6e69" -"checksum sc-authority-discovery 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-chain-spec 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-chain-spec-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-cli 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-consensus-epochs 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-consensus-slots 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-consensus-uncles 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-executor-common 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-executor-wasmi 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-executor-wasmtime 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-finality-grandpa 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-informant 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-network-gossip 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-network-test 0.8.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-peerset 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-rpc-api 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-rpc-server 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-state-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-tracing 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-transaction-graph 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sc-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sc-authority-discovery 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-block-builder 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-chain-spec 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-chain-spec-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-cli 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-client 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-client-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-client-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-consensus-epochs 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-consensus-slots 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-consensus-uncles 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-executor 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-executor-common 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-executor-wasmi 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-executor-wasmtime 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-finality-grandpa 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-informant 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-keystore 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-network 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-network-gossip 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-network-test 0.8.0-dev (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-peerset 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-rpc-api 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-rpc-server 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-service 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-state-db 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-telemetry 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-tracing 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-transaction-graph 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sc-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" "checksum schannel 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "507a9e6e8ffe0a4e0ebb9a10293e62fdf7657c06f1b8bb07a8fcf697d2abf295" "checksum schnorrkel 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862" "checksum scoped-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" @@ -8336,44 +8336,44 @@ dependencies = [ "checksum snow 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "afb767eee7d257ba202f0b9b08673bc13b22281632ef45267b19f13100accd2f" "checksum soketto 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c9dab3f95c9ebdf3a88268c19af668f637a3c5039c2c56ff2d40b1b2d64a25b" "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" -"checksum sp-allocator 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-api-proc-macro 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-arithmetic 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-consensus-aura 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-debug-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-finality-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-panic-handler 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-runtime-interface-proc-macro 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-serializer 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-storage 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sp-allocator 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-api 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-api-proc-macro 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-application-crypto 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-arithmetic 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-authority-discovery 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-authorship 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-block-builder 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-blockchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-consensus 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-consensus-aura 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-consensus-babe 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-core 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-debug-derive 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-externalities 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-finality-grandpa 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-finality-tracker 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-inherents 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-io 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-keyring 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-offchain 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-panic-handler 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-phragmen 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-rpc 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-runtime 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-runtime-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-runtime-interface-proc-macro 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-serializer 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-session 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-staking 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-state-machine 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-std 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-storage 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-timestamp 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-transaction-pool 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-trie 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-version 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum sp-wasm-interface 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" @@ -8386,13 +8386,13 @@ dependencies = [ "checksum strum 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6138f8f88a16d90134763314e3fc76fa3ed6a7db4725d6acf9a3ef95a3188d22" "checksum strum_macros 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0054a7df764039a6cd8592b9de84be4bec368ff081d203a7d5371cbfa8e65c81" "checksum substrate-bip39 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c004e8166d6e0aa3a9d5fa673e5b7098ff25f930de1013a21341988151e681bb" -"checksum substrate-browser-utils 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-frame-rpc-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-test-client 2.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-test-runtime 2.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-test-runtime-client 2.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-wasm-builder-runner 1.0.5 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-browser-utils 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum substrate-frame-rpc-system 2.0.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum substrate-prometheus-endpoint 0.8.0-alpha.4 (git+https://github.com/paritytech/substrate)" = "" +"checksum substrate-test-client 2.0.0-dev (git+https://github.com/paritytech/substrate)" = "" +"checksum substrate-test-runtime 2.0.0-dev (git+https://github.com/paritytech/substrate)" = "" +"checksum substrate-test-runtime-client 2.0.0-dev (git+https://github.com/paritytech/substrate)" = "" +"checksum substrate-wasm-builder-runner 1.0.5 (git+https://github.com/paritytech/substrate)" = "" "checksum substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e30c70de7e7d5fd404fe26db1e7a4d6b553e2760b1ac490f249c04a960c483b8" "checksum substrate-wasmtime 0.13.0-threadsafe.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e512629525ecfe43bffe1f3d9e6bb0f08bf01155288ef27fcaae4ea086e4a9d" "checksum substrate-wasmtime-jit 0.13.0-threadsafe.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a20de5564886d2bcffdd351c9cd114ceb50758aa58eac3cedb14faabf7f93b91" diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index dfcbd31e6e73..44527f3a7aa1 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -15,15 +15,15 @@ futures = "0.3.4" tokio = { version = "0.2.13", features = ["rt-core"] } exit-future = "0.2.0" codec = { package = "parity-scale-codec", version = "1.1.0", features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } +client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } kvdb = "0.4.0" kvdb-memorydb = "0.4.0" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 03684757294c..37bc4e5f88b7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -17,22 +17,22 @@ crate-type = ["cdylib", "rlib"] log = "0.4.8" futures = { version = "0.3.4", features = ["compat"] } structopt = "0.3.8" -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } service = { package = "polkadot-service", path = "../service", default-features = false } tokio = { version = "0.2.13", features = ["rt-threaded"], optional = true } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } wasm-bindgen = { version = "0.2.57", optional = true } wasm-bindgen-futures = { version = "0.4.7", optional = true } -browser-utils = { package = "substrate-browser-utils", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true } +browser-utils = { package = "substrate-browser-utils", git = "https://github.com/paritytech/substrate", branch = "master", optional = true } [features] default = [ "wasmtime", "rocksdb", "cli" ] diff --git a/collator/Cargo.toml b/collator/Cargo.toml index 058c955c0260..f16ee2930158 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -7,15 +7,15 @@ edition = "2018" [dependencies] futures = "0.3.4" -sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../primitives" } polkadot-cli = { path = "../cli" } polkadot-network = { path = "../network" } @@ -27,4 +27,4 @@ futures-timer = "2.0" codec = { package = "parity-scale-codec", version = "1.1.0" } [dev-dependencies] -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 3a36b2147f8d..65f56c3eea59 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -8,6 +8,6 @@ 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.1.0", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" } derive_more = "0.15.0" diff --git a/network/Cargo.toml b/network/Cargo.toml index ff68b80fb1e5..7ac04df7c257 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -15,19 +15,19 @@ polkadot-validation = { path = "../validation" } polkadot-primitives = { path = "../primitives" } polkadot-erasure-coding = { path = "../erasure-coding" } codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.4" log = "0.4.8" exit-future = "0.2.0" futures-timer = "2.0" -sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } wasm-timer = "0.2.4" [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/network/test/Cargo.toml b/network/test/Cargo.toml index 9e5e779eb7ee..7522ee4bc835 100644 --- a/network/test/Cargo.toml +++ b/network/test/Cargo.toml @@ -11,14 +11,14 @@ parking_lot = "0.10.0" futures = "0.3.1" rand = "0.7.2" libp2p = { version = "0.16.2", default-features = false, features = ["libp2p-websocket"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-network-test = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network-test = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } env_logger = "0.7.0" polkadot-test-runtime-client = { path = "../../runtime/test-runtime/client" } diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 518a49a867fc..d2bbed293f21 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -9,13 +9,13 @@ edition = "2018" codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = [ "derive" ] } derive_more = { version = "0.99.2", optional = true } serde = { version = "1.0.102", default-features = false, features = [ "derive" ], optional = true } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", optional = true } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } lazy_static = { version = "1.4.0", optional = true } parking_lot = { version = "0.10.0", optional = true } log = { version = "0.4.8", optional = true } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 66d6550b16d3..a9ff1532392c 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -7,20 +7,20 @@ edition = "2018" [dependencies] serde = { version = "1.0.102", optional = true, features = ["derive"] } parity-scale-codec = { version = "1.1.0", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-parachain = { path = "../parachain", default-features = false } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] } -babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] -sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "master" } pretty_assertions = "0.5.1" [features] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index f58e52ec5f8c..f3777131cafc 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -5,13 +5,13 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "master" } jsonrpc-core = "14.0.3" polkadot-primitives = { path = "../primitives" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false } diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 9454ceaaf85d..f93836524539 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -12,23 +12,23 @@ rustc-hex = { version = "2.0.1", default-features = false } serde = { version = "1.0.102", default-features = false } serde_derive = { version = "1.0.102", optional = true } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false, optional = true } +authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } polkadot-parachain = { path = "../../parachain", default-features = false } @@ -36,12 +36,12 @@ libsecp256k1 = { version = "0.3.2", default-features = false, optional = true } [dev-dependencies] hex-literal = "0.2.1" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } +treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } trie-db = "0.20.0" serde_json = "1.0.41" libsecp256k1 = "0.3.2" diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 4a70f6ea1ff3..0e81c26af97b 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -13,53 +13,53 @@ rustc-hex = { version = "2.0.1", default-features = false } serde = { version = "1.0.102", default-features = false } serde_derive = { version = "1.0.102", optional = true } -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -identity = { package = "pallet-identity", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -recovery = { package = "pallet-recovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -society = { package = "pallet-society", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -utility = { package = "pallet-utility", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false, optional = true } +authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +identity = { package = "pallet-identity", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +recovery = { package = "pallet-recovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +society = { package = "pallet-society", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } +system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +utility = { package = "pallet-utility", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } @@ -69,8 +69,8 @@ polkadot-parachain = { path = "../../parachain", default-features = false } hex-literal = "0.2.1" libsecp256k1 = "0.3.2" tiny-keccak = "1.5.0" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } trie-db = "0.20.0" serde_json = "1.0.41" diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 8c1d7deb0425..2dd1b1bdfb1b 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -307,6 +307,7 @@ parameter_types! { pub const CooloffPeriod: BlockNumber = 7 * DAYS; // One cent: $10,000 / MB pub const PreimageByteDeposit: Balance = 10 * MILLICENTS; + pub const InstantAllowed: bool = true; } impl democracy::Trait for Runtime { @@ -327,6 +328,8 @@ impl democracy::Trait for Runtime { /// Two thirds of the technical committee can have an ExternalMajority/ExternalDefault vote /// be tabled immediately and with a shorter voting/enactment period. type FastTrackOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, TechnicalCollective>; + type InstantOrigin = collective::EnsureProportionAtLeast<_1, _1, AccountId, TechnicalCollective>; + type InstantAllowed = InstantAllowed; type FastTrackVotingPeriod = FastTrackVotingPeriod; // To cancel a proposal which has been passed, 2/3 of the council must agree to it. type CancellationOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, CouncilCollective>; diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index e9f0abaca6ce..563a2f1cdb00 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -13,50 +13,50 @@ rustc-hex = { version = "2.0.1", default-features = false } serde = { version = "1.0.102", default-features = false } serde_derive = { version = "1.0.102", optional = true } -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -identity = { package = "pallet-identity", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false, optional = true } +authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +identity = { package = "pallet-identity", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } +system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } @@ -66,8 +66,8 @@ polkadot-parachain = { path = "../../parachain", default-features = false } hex-literal = "0.2.1" libsecp256k1 = "0.3.2" tiny-keccak = "1.5.0" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } trie-db = "0.20.0" serde_json = "1.0.41" diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 05a14c90099f..93b50d0ef8ed 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -314,6 +314,7 @@ parameter_types! { pub const CooloffPeriod: BlockNumber = 7 * DAYS; // One cent: $10,000 / MB pub const PreimageByteDeposit: Balance = 1 * CENTS; + pub const InstantAllowed: bool = false; } impl democracy::Trait for Runtime { @@ -334,6 +335,8 @@ impl democracy::Trait for Runtime { /// Two thirds of the technical committee can have an ExternalMajority/ExternalDefault vote /// be tabled immediately and with a shorter voting/enactment period. type FastTrackOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, TechnicalCollective>; + type InstantOrigin = collective::EnsureProportionAtLeast<_1, _1, AccountId, TechnicalCollective>; + type InstantAllowed = InstantAllowed; type FastTrackVotingPeriod = FastTrackVotingPeriod; // To cancel a proposal which has been passed, 2/3 of the council must agree to it. type CancellationOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, CouncilCollective>; diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index ca7b4a7ff657..b60fc91c2560 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -13,38 +13,38 @@ rustc-hex = { version = "2.0.1", default-features = false } serde = { version = "1.0.102", default-features = false } serde_derive = { version = "1.0.102", optional = true } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } +system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } @@ -54,8 +54,8 @@ polkadot-parachain = { path = "../../parachain", default-features = false } hex-literal = "0.2.1" libsecp256k1 = "0.3.2" tiny-keccak = "1.5.0" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } trie-db = "0.20.0" serde_json = "1.0.41" diff --git a/runtime/test-runtime/client/Cargo.toml b/runtime/test-runtime/client/Cargo.toml index a9537926164d..cee2277bc6f6 100644 --- a/runtime/test-runtime/client/Cargo.toml +++ b/runtime/test-runtime/client/Cargo.toml @@ -6,15 +6,15 @@ edition = "2018" license = "GPL-3.0" [dependencies] -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-test-runtime = { path = ".." } -substrate-test-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-test-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } codec = { package = "parity-scale-codec", version = "1.0.0" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.1" diff --git a/service/Cargo.toml b/service/Cargo.toml index 0d3bb6834399..3f3f00717a4b 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -19,45 +19,45 @@ polkadot-runtime = { path = "../runtime/polkadot" } kusama-runtime = { path = "../runtime/kusama" } polkadot-network = { path = "../network", optional = true } polkadot-rpc = { path = "../rpc" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -authority-discovery = { package = "sc-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } +service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } +im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "master" } +authority-discovery = { package = "sc-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master" } codec = { package = "parity-scale-codec", version = "1.1.0" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] polkadot-test-runtime-client = { path = "../runtime/test-runtime/client" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["rocksdb", "full-node"] diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index 35b50ac0930c..35a37efea75d 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.1.0", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/test-parachains/adder/Cargo.toml b/test-parachains/adder/Cargo.toml index 15b78d5bf74c..ba0c9dd4b291 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 -runtime-io = { package = "sp-io", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false, features = [ "disable_allocator" ] } +runtime-io = { package = "sp-io", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } [build-dependencies] wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.5" } diff --git a/test-parachains/adder/collator/Cargo.toml b/test-parachains/adder/collator/Cargo.toml index f3ad4cba0048..699647033332 100644 --- a/test-parachains/adder/collator/Cargo.toml +++ b/test-parachains/adder/collator/Cargo.toml @@ -9,9 +9,9 @@ adder = { path = ".." } parachain = { package = "polkadot-parachain", path = "../../../parachain" } collator = { package = "polkadot-collator", path = "../../../collator" } primitives = { package = "polkadot-primitives", path = "../../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client-api = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "master" } +client-api = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" } parking_lot = "0.10.0" codec = { package = "parity-scale-codec", version = "1.2.0" } futures = "0.3.4" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index b8fb6762a421..de8e847743ea 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -18,22 +18,22 @@ parachain = { package = "polkadot-parachain", path = "../parachain" } polkadot-primitives = { path = "../primitives" } polkadot-erasure-coding = { path = "../erasure-coding" } table = { package = "polkadot-statement-table", path = "../statement-table" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -consensus = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -block-builder = { package = "sc-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } +consensus = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } +primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" } +txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +block-builder = { package = "sc-block-builder", git = "https://github.com/paritytech/substrate", branch = "master" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" } +runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master" } bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] } -runtime_babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +runtime_babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }