From 3209affe4029c811c7af7bb66cd65bfdb1bef113 Mon Sep 17 00:00:00 2001 From: joepetrowski Date: Wed, 20 Nov 2019 21:26:12 +0100 Subject: [PATCH 01/14] update substrate for change to palette --- availability-store/Cargo.toml | 2 +- cli/Cargo.toml | 2 +- collator/Cargo.toml | 12 ++-- erasure-coding/Cargo.toml | 4 +- executor/Cargo.toml | 2 +- network/Cargo.toml | 12 ++-- parachain/Cargo.toml | 4 +- primitives/Cargo.toml | 16 ++--- rpc/Cargo.toml | 12 ++-- runtime/Cargo.toml | 88 +++++++++++------------ service/Cargo.toml | 46 ++++++------ statement-table/Cargo.toml | 2 +- test-parachains/adder/Cargo.toml | 2 +- test-parachains/adder/collator/Cargo.toml | 6 +- validation/Cargo.toml | 28 ++++---- 15 files changed, 119 insertions(+), 119 deletions(-) diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index 9c0d96eb9441..edcde74c7cb9 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -10,7 +10,7 @@ polkadot-primitives = { path = "../primitives" } parking_lot = "0.9.0" log = "0.4.8" codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } kvdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 2e56725e6d40..51df2956782d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -11,7 +11,7 @@ tokio = "0.1.22" futures = "0.1.29" exit-future = "0.1.4" structopt = "0.3.4" -cli = { package = "substrate-cli", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +cli = { package = "substrate-cli", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } service = { package = "polkadot-service", path = "../service" } [features] diff --git a/collator/Cargo.toml b/collator/Cargo.toml index adeb300f2e23..a30aa8d05bd9 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -8,11 +8,11 @@ edition = "2018" [dependencies] futures = "0.1.29" futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } polkadot-runtime = { path = "../runtime" } polkadot-primitives = { path = "../primitives" } polkadot-cli = { path = "../cli" } @@ -23,4 +23,4 @@ log = "0.4.8" tokio = "0.1.22" [dev-dependencies] -keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 8e9cd46fba56..305b45c25d59 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -8,5 +8,5 @@ edition = "2018" primitives = { package = "polkadot-primitives", path = "../primitives" } reed_solomon = { package = "reed-solomon-erasure", git = "https://github.com/paritytech/reed-solomon-erasure" } codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } diff --git a/executor/Cargo.toml b/executor/Cargo.toml index d7d97785ae6c..264919ffadad 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -6,5 +6,5 @@ description = "Polkadot node implementation in Rust." edition = "2018" [dependencies] -substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } polkadot-runtime = { path = "../runtime" } diff --git a/network/Cargo.toml b/network/Cargo.toml index d7e6c257efd7..9f92d4efb3b4 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -12,15 +12,15 @@ av_store = { package = "polkadot-availability-store", path = "../availability-st polkadot-validation = { path = "../validation" } polkadot-primitives = { path = "../primitives" } codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } futures = "0.1.29" futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } log = "0.4.8" exit-future = "0.1.4" -substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-client = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } [dev-dependencies] -substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 4b46d6e8c425..29f7ace1bff3 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -10,8 +10,8 @@ codec = { package = "parity-scale-codec", version = "1.1.0", default-features = wasmi = { version = "0.4.5", optional = true } derive_more = { version = "0.14.1", optional = true } serde = { version = "1.0.102", default-features = false, features = [ "derive" ] } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets", default-features = false } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets", default-features = false } lazy_static = { version = "1.4.0", optional = true } parking_lot = { version = "0.7.1", optional = true } log = { version = "0.4.8", optional = true } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 3d8895368053..782b4ae256e8 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -7,18 +7,18 @@ 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 = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets", default-features = false } +sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } polkadot-parachain = { path = "../parachain", default-features = false } bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] } -babe = { package = "paint-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +babe = { package = "paint-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } [dev-dependencies] -substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } pretty_assertions = "0.5.1" [features] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index a7c58b3ed72e..036f4c86f402 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -5,13 +5,13 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } jsonrpc-core = "14.0.3" polkadot-primitives = { path = "../primitives" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -paint-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -paint-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +paint-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +paint-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } polkadot-runtime = { path = "../runtime" } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 2464e61d733f..2814eb2f06e5 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -14,49 +14,49 @@ safe-mix = { version = "1.0.0", default-features = false } serde = { version = "1.0.102", default-features = false } serde_derive = { version = "1.0.102", optional = true } -authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } -inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -sr-staking-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -tx-pool-api = { package = "substrate-transaction-pool-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -block-builder-api = { package = "substrate-block-builder-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets", default-features = false } +inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +sr-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +sr-staking-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +tx-pool-api = { package = "substrate-transaction-pool-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +block-builder-api = { package = "substrate-block-builder-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -authority-discovery = { package = "paint-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -authorship = { package = "paint-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -babe = { package = "paint-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -balances = { package = "paint-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -transaction-payment = { package = "paint-transaction-payment", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -paint-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -collective = { package = "paint-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -democracy = { package = "paint-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -elections-phragmen = { package = "paint-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -executive = { package = "paint-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -finality-tracker = { package = "paint-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -grandpa = { package = "paint-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "polkadot-master" } -im-online = { package = "paint-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -indices = { package = "paint-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -membership = { package = "paint-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -nicks = { package = "paint-nicks", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -offences = { package = "paint-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -randomness-collective-flip = { package = "paint-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -session = { package = "paint-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -paint-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -staking = { package = "paint-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -paint-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sudo = { package = "paint-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -system = { package = "paint-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -system_rpc_runtime_api = { package = "paint-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -timestamp = { package = "paint-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -treasury = { package = "paint-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +authority-discovery = { package = "paint-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +authorship = { package = "paint-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +babe = { package = "paint-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +balances = { package = "paint-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +transaction-payment = { package = "paint-transaction-payment", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +paint-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +collective = { package = "paint-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +democracy = { package = "paint-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +elections-phragmen = { package = "paint-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +executive = { package = "paint-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +finality-tracker = { package = "paint-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +grandpa = { package = "paint-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "joe-a-palette-of-pallets" } +im-online = { package = "paint-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +indices = { package = "paint-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +membership = { package = "paint-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +nicks = { package = "paint-nicks", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +offences = { package = "paint-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +randomness-collective-flip = { package = "paint-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +session = { package = "paint-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +paint-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +staking = { package = "paint-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +paint-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +sudo = { package = "paint-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +system = { package = "paint-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +system_rpc_runtime_api = { package = "paint-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +timestamp = { package = "paint-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +treasury = { package = "paint-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } primitives = { package = "polkadot-primitives", path = "../primitives", default-features = false } polkadot-parachain = { path = "../parachain", default-features = false } @@ -65,8 +65,8 @@ polkadot-parachain = { path = "../parachain", default-features = false } hex-literal = "0.2.1" libsecp256k1 = "0.3.2" tiny-keccak = "1.5.0" -keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } trie-db = "0.15.2" serde_json = "1.0.41" diff --git a/service/Cargo.toml b/service/Cargo.toml index 818210959175..6f702fb1597a 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -19,26 +19,26 @@ polkadot-runtime = { path = "../runtime" } polkadot-executor = { path = "../executor" } polkadot-network = { path = "../network" } polkadot-rpc = { path = "../rpc" } -sr-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client-db = { package = "substrate-client-db", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -grandpa_primitives = { package = "substrate-finality-grandpa-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -service = { package = "substrate-service", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -telemetry = { package = "substrate-telemetry", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -substrate-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -paint-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -paint-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -im-online = { package = "paint-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -authority-discovery = { package = "substrate-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -babe = { package = "substrate-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-io = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +client-db = { package = "substrate-client-db", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +grandpa_primitives = { package = "substrate-finality-grandpa-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +service = { package = "substrate-service", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +telemetry = { package = "substrate-telemetry", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-keystore = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +paint-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +paint-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +im-online = { package = "paint-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +authority-discovery = { package = "substrate-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +babe = { package = "substrate-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index 37e76f46998f..ffd074efad40 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"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/test-parachains/adder/Cargo.toml b/test-parachains/adder/Cargo.toml index de9fae02d209..1fd901366f15 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 = "sr-io", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false, features = [ "disable_allocator" ] } +runtime-io = { package = "sr-io", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets", default-features = false, features = [ "disable_allocator" ] } [build-dependencies] wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.4" } diff --git a/test-parachains/adder/collator/Cargo.toml b/test-parachains/adder/collator/Cargo.toml index 0a86193b77fe..b55dc138628c 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" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } parking_lot = "0.9.0" ctrlc = { version = "3.1.3", features = ["termination"] } futures = "0.1.29" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 177cf3c762e6..1effb15cde6a 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -19,20 +19,20 @@ parachain = { package = "polkadot-parachain", path = "../parachain" } polkadot-primitives = { path = "../primitives" } polkadot-runtime = { path = "../runtime" } table = { package = "polkadot-statement-table", path = "../statement-table" } -grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -consensus = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -block-builder = { package = "substrate-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +consensus = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +block-builder = { package = "substrate-block-builder", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] } -runtime_babe = { package = "paint-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -keystore = { package = "substrate-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +runtime_babe = { package = "paint-babe", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +keystore = { package = "substrate-keystore", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } [dev-dependencies] -substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } From 2eec0cef9c2dc49d7a5454584b565c0a31ff3600 Mon Sep 17 00:00:00 2001 From: joepetrowski Date: Wed, 20 Nov 2019 21:35:24 +0100 Subject: [PATCH 02/14] change paint to palette --- primitives/Cargo.toml | 2 +- rpc/Cargo.toml | 4 +-- rpc/src/lib.rs | 8 ++--- runtime/Cargo.toml | 58 ++++++++++++++++++------------------- runtime/src/attestations.rs | 2 +- runtime/src/claims.rs | 6 ++-- runtime/src/crowdfund.rs | 4 +-- runtime/src/impls.rs | 2 +- runtime/src/lib.rs | 8 ++--- runtime/src/parachains.rs | 6 ++-- runtime/src/registrar.rs | 4 +-- runtime/src/slots.rs | 4 +-- service/Cargo.toml | 6 ++-- service/src/chain_spec.rs | 2 +- validation/Cargo.toml | 2 +- 15 files changed, 59 insertions(+), 59 deletions(-) diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 782b4ae256e8..8d9b91225614 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -15,7 +15,7 @@ rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", de runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } polkadot-parachain = { path = "../parachain", default-features = false } bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] } -babe = { package = "paint-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } [dev-dependencies] substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 036f4c86f402..0356c2cc03be 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -11,7 +11,7 @@ polkadot-primitives = { path = "../primitives" } sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } substrate-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -paint-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -paint-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +palette-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } polkadot-runtime = { path = "../runtime" } diff --git a/rpc/src/lib.rs b/rpc/src/lib.rs index 0923dc45541f..941e1f7a1a2b 100644 --- a/rpc/src/lib.rs +++ b/rpc/src/lib.rs @@ -33,12 +33,12 @@ pub fn create(client: Arc, pool: Arc>) -> RpcExtension where C: ProvideRuntimeApi, C: client::blockchain::HeaderBackend, C: Send + Sync + 'static, - C::Api: paint_system_rpc::AccountNonceApi, - C::Api: paint_transaction_payment_rpc::TransactionPaymentRuntimeApi, + C::Api: palette_system_rpc::AccountNonceApi, + C::Api: pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi, P: ChainApi + Sync + Send + 'static, { - use paint_system_rpc::{System, SystemApi}; - use paint_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApi}; + use palette_system_rpc::{System, SystemApi}; + use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApi}; let mut io = jsonrpc_core::IoHandler::default(); io.extend_with( diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 2814eb2f06e5..ffd77b334a25 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -30,33 +30,33 @@ version = { package = "sr-version", git = "https://github.com/paritytech/substra tx-pool-api = { package = "substrate-transaction-pool-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } block-builder-api = { package = "substrate-block-builder-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -authority-discovery = { package = "paint-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -authorship = { package = "paint-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -babe = { package = "paint-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -balances = { package = "paint-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -transaction-payment = { package = "paint-transaction-payment", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -paint-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -collective = { package = "paint-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -democracy = { package = "paint-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -elections-phragmen = { package = "paint-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -executive = { package = "paint-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -finality-tracker = { package = "paint-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -grandpa = { package = "paint-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "joe-a-palette-of-pallets" } -im-online = { package = "paint-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -indices = { package = "paint-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -membership = { package = "paint-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -nicks = { package = "paint-nicks", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -offences = { package = "paint-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -randomness-collective-flip = { package = "paint-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -session = { package = "paint-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -paint-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -staking = { package = "paint-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -paint-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -sudo = { package = "paint-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -system = { package = "paint-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -system_rpc_runtime_api = { package = "paint-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -timestamp = { package = "paint-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -treasury = { package = "paint-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +executive = { package = "palette-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "joe-a-palette-of-pallets" } +im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +palette-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +system = { package = "palette-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +system_rpc_runtime_api = { package = "palette-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } primitives = { package = "polkadot-primitives", path = "../primitives", default-features = false } polkadot-parachain = { path = "../parachain", default-features = false } @@ -93,11 +93,11 @@ std = [ "offchain-primitives/std", "rstd/std", "sr-io/std", - "paint-support/std", + "palette-support/std", "authorship/std", "balances/std", "transaction-payment/std", - "paint-transaction-payment-rpc-runtime-api/std", + "pallet-transaction-payment-rpc-runtime-api/std", "collective/std", "elections-phragmen/std", "democracy/std", diff --git a/runtime/src/attestations.rs b/runtime/src/attestations.rs index ee6b8d19c9ca..f71c99794b5a 100644 --- a/runtime/src/attestations.rs +++ b/runtime/src/attestations.rs @@ -21,7 +21,7 @@ use rstd::prelude::*; use codec::{Encode, Decode}; -use paint_support::{decl_storage, decl_module, ensure, dispatch::Result, traits::Get}; +use palette_support::{decl_storage, decl_module, ensure, dispatch::Result, traits::Get}; use primitives::{Hash, parachain::{AttestedCandidate, CandidateReceipt, Id as ParaId}}; use sr_primitives::RuntimeDebug; diff --git a/runtime/src/claims.rs b/runtime/src/claims.rs index f5adda5f7572..cf0ba52f1714 100644 --- a/runtime/src/claims.rs +++ b/runtime/src/claims.rs @@ -18,8 +18,8 @@ use rstd::prelude::*; use sr_io::{hashing::keccak_256, crypto::secp256k1_ecdsa_recover}; -use paint_support::{decl_event, decl_storage, decl_module}; -use paint_support::traits::{Currency, Get}; +use palette_support::{decl_event, decl_storage, decl_module}; +use palette_support::traits::{Currency, Get}; use system::{ensure_root, ensure_none}; use codec::{Encode, Decode}; #[cfg(feature = "std")] @@ -249,7 +249,7 @@ mod tests { // or public keys. `u64` is used as the `AccountId` and no `Signature`s are required. use sr_primitives::{Perbill, traits::{BlakeTwo256, IdentityLookup}, testing::Header}; use balances; - use paint_support::{impl_outer_origin, assert_ok, assert_err, assert_noop, parameter_types}; + use palette_support::{impl_outer_origin, assert_ok, assert_err, assert_noop, parameter_types}; impl_outer_origin! { pub enum Origin for Test {} diff --git a/runtime/src/crowdfund.rs b/runtime/src/crowdfund.rs index 6d4a6f67a262..5891dd056478 100644 --- a/runtime/src/crowdfund.rs +++ b/runtime/src/crowdfund.rs @@ -66,7 +66,7 @@ //! order to win a later auction, then it is the parachain's duty to ensure that the right amount of //! funds ultimately end up in module's fund sub-account. -use paint_support::{ +use palette_support::{ decl_module, decl_storage, decl_event, storage::child, ensure, traits::{ Currency, Get, OnUnbalanced, WithdrawReason, ExistenceRequirement::AllowDeath } @@ -489,7 +489,7 @@ mod tests { use super::*; use std::{collections::HashMap, cell::RefCell}; - use paint_support::{impl_outer_origin, assert_ok, assert_noop, parameter_types}; + use palette_support::{impl_outer_origin, assert_ok, assert_noop, parameter_types}; use substrate_primitives::H256; use primitives::parachain::{Info as ParaInfo, Id as ParaId}; // The testing primitives are very useful for avoiding having to work with signatures diff --git a/runtime/src/impls.rs b/runtime/src/impls.rs index 960d76ba1b37..1a27f9b389b3 100644 --- a/runtime/src/impls.rs +++ b/runtime/src/impls.rs @@ -20,7 +20,7 @@ use primitives::Balance; use sr_primitives::weights::Weight; use sr_primitives::traits::{Convert, Saturating}; use sr_primitives::{Fixed64, Perbill}; -use paint_support::traits::{OnUnbalanced, Currency, Get}; +use palette_support::traits::{OnUnbalanced, Currency, Get}; use crate::{Balances, System, Authorship, MaximumBlockWeight, NegativeImbalance}; /// Logic for the author to get a portion of fees. diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 836eaba325f7..ec321d5b8986 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -48,12 +48,12 @@ use grandpa::{AuthorityId as GrandpaId, fg_primitives}; use version::NativeVersion; use substrate_primitives::OpaqueMetadata; use sr_staking_primitives::SessionIndex; -use paint_support::{ +use palette_support::{ parameter_types, construct_runtime, traits::{SplitTwoWays, Currency, Randomness} }; use im_online::sr25519::AuthorityId as ImOnlineId; use system::offchain::TransactionSubmitter; -use paint_transaction_payment_rpc_runtime_api::RuntimeDispatchInfo; +use pallet_transaction_payment_rpc_runtime_api::RuntimeDispatchInfo; #[cfg(feature = "std")] pub use staking::StakerStatus; @@ -278,7 +278,7 @@ impl session::historical::Trait for Runtime { type FullIdentificationOf = staking::ExposureOf; } -paint_staking_reward_curve::build! { +pallet_staking_reward_curve::build! { const REWARD_CURVE: PiecewiseLinear<'static> = curve!( min_inflation: 0_025_000, max_inflation: 0_100_000, @@ -738,7 +738,7 @@ sr_api::impl_runtime_apis! { } } - impl paint_transaction_payment_rpc_runtime_api::TransactionPaymentApi< + impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi< Block, Balance, UncheckedExtrinsic, diff --git a/runtime/src/parachains.rs b/runtime/src/parachains.rs index e9eced0afbd9..3ab9da5f300d 100644 --- a/runtime/src/parachains.rs +++ b/runtime/src/parachains.rs @@ -33,7 +33,7 @@ use primitives::{ UpwardMessage, BlockIngressRoots, ValidatorId, ActiveParas, CollatorId, Retriable }, }; -use paint_support::{ +use palette_support::{ Parameter, dispatch::Result, decl_storage, decl_module, ensure, traits::{Currency, Get, WithdrawReason, ExistenceRequirement, Randomness}, }; @@ -917,7 +917,7 @@ mod tests { }; use crate::constants::time::*; use keyring::Sr25519Keyring; - use paint_support::{ + use palette_support::{ impl_outer_origin, impl_outer_dispatch, assert_ok, assert_err, parameter_types, }; use crate::parachains; @@ -1026,7 +1026,7 @@ mod tests { type CreationFee = CreationFee; } - paint_staking_reward_curve::build! { + pallet_staking_reward_curve::build! { const REWARD_CURVE: PiecewiseLinear<'static> = curve!( min_inflation: 0_025_000, max_inflation: 0_100_000, diff --git a/runtime/src/registrar.rs b/runtime/src/registrar.rs index 63ed3014d63f..5432b2267cb4 100644 --- a/runtime/src/registrar.rs +++ b/runtime/src/registrar.rs @@ -29,7 +29,7 @@ use sr_primitives::{ traits::{Hash as HashT, SignedExtension} }; -use paint_support::{ +use palette_support::{ decl_storage, decl_module, decl_event, ensure, dispatch::{Result, IsSubType}, traits::{Get, Currency, ReservableCurrency} }; @@ -588,7 +588,7 @@ mod tests { }, Balance, BlockNumber, }; - use paint_support::{ + use palette_support::{ impl_outer_origin, impl_outer_dispatch, assert_ok, parameter_types, assert_noop, }; use keyring::Sr25519Keyring; diff --git a/runtime/src/slots.rs b/runtime/src/slots.rs index 8d928d7bdc2e..c0acba465c6b 100644 --- a/runtime/src/slots.rs +++ b/runtime/src/slots.rs @@ -24,7 +24,7 @@ use sr_primitives::traits::{ }; use sr_primitives::weights::SimpleDispatchInfo; use codec::{Encode, Decode, Codec}; -use paint_support::{ +use palette_support::{ decl_module, decl_storage, decl_event, ensure, traits::{Currency, ReservableCurrency, WithdrawReason, ExistenceRequirement, Get, Randomness}, }; @@ -825,7 +825,7 @@ mod tests { Perbill, testing::Header, traits::{BlakeTwo256, Hash, IdentityLookup, OnInitialize, OnFinalize}, }; - use paint_support::{impl_outer_origin, parameter_types, assert_ok, assert_noop}; + use palette_support::{impl_outer_origin, parameter_types, assert_ok, assert_noop}; use balances; use primitives::parachain::{Id as ParaId, Info as ParaInfo}; diff --git a/service/Cargo.toml b/service/Cargo.toml index 6f702fb1597a..4376e5633d19 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -36,9 +36,9 @@ service = { package = "substrate-service", git = "https://github.com/paritytech/ telemetry = { package = "substrate-telemetry", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } substrate-keystore = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -paint-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -paint-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -im-online = { package = "paint-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } authority-discovery = { package = "substrate-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } babe = { package = "substrate-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } diff --git a/service/src/chain_spec.rs b/service/src/chain_spec.rs index 55c5327d33b2..399e595e4a1e 100644 --- a/service/src/chain_spec.rs +++ b/service/src/chain_spec.rs @@ -30,7 +30,7 @@ use hex_literal::hex; use babe_primitives::AuthorityId as BabeId; use grandpa::AuthorityId as GrandpaId; use im_online::sr25519::{AuthorityId as ImOnlineId}; -use paint_staking::Forcing; +use pallet_staking::Forcing; const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; const DEFAULT_PROTOCOL_ID: &str = "dot"; diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 1effb15cde6a..ca6a9d364c24 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -30,7 +30,7 @@ block-builder = { package = "substrate-block-builder", git = "https://github.com trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] } -runtime_babe = { package = "paint-babe", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +runtime_babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } keystore = { package = "substrate-keystore", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } From 2311e86687efbc3e5e8dc5d1545550bd97c24c01 Mon Sep 17 00:00:00 2001 From: joepetrowski Date: Wed, 20 Nov 2019 21:35:42 +0100 Subject: [PATCH 03/14] update lock --- Cargo.lock | 334 ++++++++++++++++++++++++++--------------------------- 1 file changed, 167 insertions(+), 167 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dfccd68288f1..5553bc96a0f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2569,13 +2569,13 @@ dependencies = [ ] [[package]] -name = "paint-authority-discovery" +name = "pallet-authority-discovery" version = "0.1.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2587,13 +2587,13 @@ dependencies = [ ] [[package]] -name = "paint-authorship" +name = "pallet-authorship" version = "0.1.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2603,15 +2603,15 @@ dependencies = [ ] [[package]] -name = "paint-babe" +name = "pallet-babe" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2623,12 +2623,12 @@ dependencies = [ ] [[package]] -name = "paint-balances" +name = "pallet-balances" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2638,12 +2638,12 @@ dependencies = [ ] [[package]] -name = "paint-collective" +name = "pallet-collective" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2654,12 +2654,12 @@ dependencies = [ ] [[package]] -name = "paint-democracy" +name = "pallet-democracy" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2669,12 +2669,12 @@ dependencies = [ ] [[package]] -name = "paint-elections-phragmen" +name = "pallet-elections-phragmen" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2682,12 +2682,12 @@ dependencies = [ ] [[package]] -name = "paint-executive" +name = "palette-executive" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2696,13 +2696,13 @@ dependencies = [ ] [[package]] -name = "paint-finality-tracker" +name = "pallet-finality-tracker" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2711,14 +2711,14 @@ dependencies = [ ] [[package]] -name = "paint-grandpa" +name = "pallet-grandpa" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2729,14 +2729,14 @@ dependencies = [ ] [[package]] -name = "paint-im-online" +name = "pallet-im-online" version = "0.1.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2748,12 +2748,12 @@ dependencies = [ ] [[package]] -name = "paint-indices" +name = "pallet-indices" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2765,12 +2765,12 @@ dependencies = [ ] [[package]] -name = "paint-membership" +name = "pallet-membership" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2779,7 +2779,7 @@ dependencies = [ ] [[package]] -name = "paint-metadata" +name = "palette-metadata" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ @@ -2790,12 +2790,12 @@ dependencies = [ ] [[package]] -name = "paint-nicks" +name = "pallet-nicks" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2804,13 +2804,13 @@ dependencies = [ ] [[package]] -name = "paint-offences" +name = "pallet-offences" version = "1.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2819,12 +2819,12 @@ dependencies = [ ] [[package]] -name = "paint-randomness-collective-flip" +name = "pallet-randomness-collective-flip" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2832,14 +2832,14 @@ dependencies = [ ] [[package]] -name = "paint-session" +name = "pallet-session" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2851,14 +2851,14 @@ dependencies = [ ] [[package]] -name = "paint-staking" +name = "pallet-staking" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2871,7 +2871,7 @@ dependencies = [ ] [[package]] -name = "paint-staking-reward-curve" +name = "pallet-staking-reward-curve" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ @@ -2882,12 +2882,12 @@ dependencies = [ ] [[package]] -name = "paint-sudo" +name = "pallet-sudo" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2896,7 +2896,7 @@ dependencies = [ ] [[package]] -name = "paint-support" +name = "palette-support" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ @@ -2904,8 +2904,8 @@ dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.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.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2918,22 +2918,22 @@ dependencies = [ ] [[package]] -name = "paint-support-procedural" +name = "palette-support-procedural" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "paint-support-procedural-tools" +name = "palette-support-procedural-tools" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2941,7 +2941,7 @@ dependencies = [ ] [[package]] -name = "paint-support-procedural-tools-derive" +name = "palette-support-procedural-tools-derive" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ @@ -2951,12 +2951,12 @@ dependencies = [ ] [[package]] -name = "paint-system" +name = "palette-system" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2968,7 +2968,7 @@ dependencies = [ ] [[package]] -name = "paint-system-rpc" +name = "palette-system-rpc" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ @@ -2976,7 +2976,7 @@ dependencies = [ "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2986,7 +2986,7 @@ dependencies = [ ] [[package]] -name = "paint-system-rpc-runtime-api" +name = "palette-system-rpc-runtime-api" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ @@ -2995,13 +2995,13 @@ dependencies = [ ] [[package]] -name = "paint-timestamp" +name = "pallet-timestamp" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3010,27 +3010,27 @@ dependencies = [ ] [[package]] -name = "paint-transaction-payment" +name = "pallet-transaction-payment" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] -name = "paint-transaction-payment-rpc" +name = "pallet-transaction-payment-rpc" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3040,7 +3040,7 @@ dependencies = [ ] [[package]] -name = "paint-transaction-payment-rpc-runtime-api" +name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ @@ -3052,13 +3052,13 @@ dependencies = [ ] [[package]] -name = "paint-treasury" +name = "pallet-treasury" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ - "paint-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3481,7 +3481,7 @@ name = "polkadot-primitives" version = "0.6.17" dependencies = [ "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.6.17", "pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3500,8 +3500,8 @@ name = "polkadot-rpc" version = "0.6.17" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "polkadot-primitives 0.6.17", "polkadot-runtime 0.6.17", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3518,33 +3518,33 @@ dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.6.17", "polkadot-primitives 0.6.17", @@ -3584,9 +3584,9 @@ dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "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)", - "paint-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "paint-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-availability-store 0.6.17", "polkadot-executor 0.6.17", @@ -3638,7 +3638,7 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.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.6.17", @@ -4877,7 +4877,7 @@ dependencies = [ "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4959,7 +4959,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5030,7 +5030,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "paint-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6809,39 +6809,39 @@ dependencies = [ "checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" -"checksum paint-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum paint-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)" = "" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" From 7f6802a6ace2df59c5e3dbba82e0cffe20b4049c Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Thu, 21 Nov 2019 00:32:42 +0100 Subject: [PATCH 04/14] Fix missing import --- Cargo.lock | 1705 +++++++++++++++++++++-------------------- validation/Cargo.toml | 1 + validation/src/lib.rs | 2 +- 3 files changed, 875 insertions(+), 833 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5553bc96a0f8..80e3cbbc196a 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.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.6.17", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -33,9 +33,9 @@ dependencies = [ "polkadot-collator 0.6.17", "polkadot-parachain 0.6.17", "polkadot-primitives 0.6.17", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -990,7 +990,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2259,11 +2259,11 @@ dependencies = [ ] [[package]] -name = "lru-cache" -version = "0.1.2" +name = "lru" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2569,500 +2569,504 @@ dependencies = [ ] [[package]] -name = "pallet-authority-discovery" -version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +name = "palette-executive" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-authorship" -version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" -dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", -] - -[[package]] -name = "pallet-babe" +name = "palette-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-balances" +name = "palette-support" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.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.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-collective" +name = "palette-support-procedural" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "pallet-democracy" +name = "palette-support-procedural-tools" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "pallet-elections-phragmen" +name = "palette-support-procedural-tools-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "palette-executive" +name = "palette-system" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-finality-tracker" +name = "palette-system-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-grandpa" +name = "palette-system-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-im-online" +name = "pallet-authority-discovery" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-indices" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +name = "pallet-authorship" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-membership" +name = "pallet-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "palette-metadata" +name = "pallet-balances" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-nicks" +name = "pallet-collective" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-offences" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +name = "pallet-democracy" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-randomness-collective-flip" +name = "pallet-elections-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-session" +name = "pallet-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-staking" +name = "pallet-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-staking-reward-curve" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +name = "pallet-im-online" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "pallet-sudo" +name = "pallet-indices" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "palette-support" +name = "pallet-membership" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.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.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "palette-support-procedural" +name = "pallet-nicks" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "palette-support-procedural-tools" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +name = "pallet-offences" +version = "1.0.0" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "palette-support-procedural-tools-derive" +name = "pallet-randomness-collective-flip" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "palette-system" +name = "pallet-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "palette-system-rpc" +name = "pallet-staking" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] -name = "palette-system-rpc-runtime-api" +name = "pallet-staking-reward-curve" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-sudo" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +dependencies = [ + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "pallet-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "pallet-transaction-payment" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "pallet-treasury" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -3378,7 +3382,7 @@ dependencies = [ "parity-scale-codec 1.1.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-primitives 0.6.17", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -3390,7 +3394,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-service 0.6.17", "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3407,12 +3411,12 @@ dependencies = [ "polkadot-runtime 0.6.17", "polkadot-service 0.6.17", "polkadot-validation 0.6.17", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3423,8 +3427,8 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-primitives 0.6.17", "reed-solomon-erasure 4.0.0 (git+https://github.com/paritytech/reed-solomon-erasure)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -3432,7 +3436,7 @@ name = "polkadot-executor" version = "0.6.17" dependencies = [ "polkadot-runtime 0.6.17", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -3449,12 +3453,12 @@ dependencies = [ "polkadot-availability-store 0.6.17", "polkadot-primitives 0.6.17", "polkadot-validation 0.6.17", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -3470,8 +3474,8 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "shared_memory 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3481,18 +3485,18 @@ name = "polkadot-primitives" version = "0.6.17" dependencies = [ "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.6.17", "pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -3500,14 +3504,14 @@ name = "polkadot-rpc" version = "0.6.17" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "polkadot-primitives 0.6.17", "polkadot-runtime 0.6.17", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -3518,33 +3522,33 @@ dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.6.17", "polkadot-primitives 0.6.17", @@ -3553,23 +3557,23 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3584,9 +3588,9 @@ dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "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 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-availability-store 0.6.17", "polkadot-executor 0.6.17", @@ -3596,26 +3600,26 @@ dependencies = [ "polkadot-runtime 0.6.17", "polkadot-validation 0.6.17", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -3624,7 +3628,7 @@ version = "0.6.17" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-primitives 0.6.17", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -3638,7 +3642,7 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "parity-scale-codec 1.1.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.6.17", @@ -3646,19 +3650,20 @@ dependencies = [ "polkadot-primitives 0.6.17", "polkadot-runtime 0.6.17", "polkadot-statement-table 0.6.17", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4447,6 +4452,39 @@ name = "sourcefile" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "sp-authorship" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +dependencies = [ + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", +] + +[[package]] +name = "sp-finality-tracker" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +dependencies = [ + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", +] + +[[package]] +name = "sp-timestamp" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +dependencies = [ + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", +] + [[package]] name = "spin" version = "0.5.2" @@ -4455,21 +4493,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "sr-api-proc-macro" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" 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)", @@ -4481,37 +4519,37 @@ dependencies = [ [[package]] name = "sr-arithmetic" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "sr-io" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "sr-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4519,39 +4557,39 @@ dependencies = [ "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "sr-staking-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "sr-std" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" [[package]] name = "sr-version" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -4633,19 +4671,19 @@ dependencies = [ [[package]] name = "substrate-application-crypto" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-authority-discovery" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4657,24 +4695,24 @@ dependencies = [ "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-authority-discovery-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] @@ -4691,46 +4729,46 @@ dependencies = [ [[package]] name = "substrate-block-builder" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-block-builder-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-chain-spec" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-chain-spec-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4741,7 +4779,7 @@ dependencies = [ [[package]] name = "substrate-cli" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" 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)", @@ -4759,17 +4797,17 @@ dependencies = [ "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4777,7 +4815,7 @@ dependencies = [ [[package]] name = "substrate-client" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4789,27 +4827,27 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-client-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4821,26 +4859,26 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-client-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -4850,25 +4888,25 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-consensus-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4877,49 +4915,51 @@ dependencies = [ "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.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.2 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-consensus-babe-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-consensus-common" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4928,49 +4968,49 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-consensus-slots" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-consensus-uncles" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-debug-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4980,7 +5020,7 @@ dependencies = [ [[package]] name = "substrate-executor" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4994,15 +5034,15 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", "wasmtime-jit 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", @@ -5012,40 +5052,40 @@ dependencies = [ [[package]] name = "substrate-externalities" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-finality-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5053,69 +5093,69 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-header-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "lru 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-inherents" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-keyring" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-keystore" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5123,7 +5163,7 @@ dependencies = [ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5131,7 +5171,7 @@ dependencies = [ "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "lru 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5141,16 +5181,16 @@ dependencies = [ "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5160,7 +5200,7 @@ dependencies = [ [[package]] name = "substrate-offchain" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5174,30 +5214,30 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-panic-handler" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5206,30 +5246,28 @@ dependencies = [ [[package]] name = "substrate-peerset" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" 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)", @@ -5252,12 +5290,12 @@ dependencies = [ "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5268,18 +5306,18 @@ dependencies = [ [[package]] name = "substrate-primitives-storage" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5289,25 +5327,25 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-rpc-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5320,25 +5358,25 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-rpc-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-rpc-servers" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5347,28 +5385,28 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-runtime-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-runtime-interface-proc-macro" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" 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)", @@ -5380,7 +5418,7 @@ dependencies = [ [[package]] name = "substrate-serializer" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5389,7 +5427,7 @@ dependencies = [ [[package]] name = "substrate-service" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5403,26 +5441,26 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5432,28 +5470,28 @@ dependencies = [ [[package]] name = "substrate-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-state-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-state-machine" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" 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)", @@ -5461,10 +5499,10 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5472,7 +5510,7 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5494,54 +5532,54 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-transaction-pool" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-transaction-pool-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", ] [[package]] name = "substrate-trie" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5554,7 +5592,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "substrate-wasm-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#f44873dce009b1b651434c836b5be09d546f1915" +source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6655,7 +6693,7 @@ dependencies = [ "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" "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 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" @@ -6773,7 +6811,7 @@ dependencies = [ "checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" -"checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" +"checksum lru 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "26b0dca4ac5b5083c5169ab12205e6473df1c7659940e4978b94f363c6b54b22" "checksum mach 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "86dd2487cdfea56def77b88438a2c915fb45113c5319bfe7e14306ca4cd0b0e1" "checksum malloc_size_of_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e37c5d4cd9473c5f4c9c111f033f15d4df9bd378fdf615944e360a4f55a05f0b" "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" @@ -6809,39 +6847,39 @@ dependencies = [ "checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" -"checksum pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)" = "" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" @@ -6960,15 +6998,18 @@ dependencies = [ "checksum snow 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "91eecae35b461ed26bda7a76bea2cc5bda2bf4b8dd06761879f19e6fdd50c2dd" "checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" +"checksum sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" -"checksum sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" "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" "checksum stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" @@ -6979,58 +7020,58 @@ dependencies = [ "checksum structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "519621841414165d2ad0d4c92be8f41844203f2b67e245f9345a5a12d40c69d7" "checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" "checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" -"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" "checksum substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3be511be555a3633e71739a79e4ddff6a6aaa6579fa6114182a51d72c3eb93c5" -"checksum substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" "checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" -"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index ca6a9d364c24..0e3f53660139 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -26,6 +26,7 @@ primitives = { package = "substrate-primitives", git = "https://github.com/parit transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } block-builder = { package = "substrate-block-builder", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } diff --git a/validation/src/lib.rs b/validation/src/lib.rs index 51736d34e559..a02e277cfad4 100644 --- a/validation/src/lib.rs +++ b/validation/src/lib.rs @@ -57,7 +57,7 @@ use futures03::{future::{self, Either, FutureExt}, task::Context, stream::Stream use collation::CollationFetch; use dynamic_inclusion::DynamicInclusion; use inherents::InherentData; -use runtime_babe::timestamp::TimestampInherentData; +use sp_timestamp::TimestampInherentData; use log::{info, debug, warn, trace, error}; use keystore::KeyStorePtr; use sr_api::ApiExt; From 57a8454fc0a50b91721b8b6e376101be5ab22afd Mon Sep 17 00:00:00 2001 From: joepetrowski Date: Thu, 21 Nov 2019 10:27:33 +0100 Subject: [PATCH 05/14] change to polkadot-master --- Cargo.lock | 1826 +++++++++++---------- availability-store/Cargo.toml | 2 +- cli/Cargo.toml | 2 +- collator/Cargo.toml | 12 +- erasure-coding/Cargo.toml | 4 +- executor/Cargo.toml | 2 +- network/Cargo.toml | 12 +- parachain/Cargo.toml | 4 +- primitives/Cargo.toml | 16 +- rpc/Cargo.toml | 12 +- runtime/Cargo.toml | 88 +- service/Cargo.toml | 46 +- statement-table/Cargo.toml | 2 +- test-parachains/adder/Cargo.toml | 2 +- test-parachains/adder/collator/Cargo.toml | 6 +- validation/Cargo.toml | 30 +- 16 files changed, 1048 insertions(+), 1018 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80e3cbbc196a..f27dee58e994 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.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.6.17", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -33,9 +33,9 @@ dependencies = [ "polkadot-collator 0.6.17", "polkadot-parachain 0.6.17", "polkadot-primitives 0.6.17", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -209,6 +209,11 @@ dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "base64" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "bincode" version = "1.2.0" @@ -476,46 +481,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cranelift-bforest" -version = "0.46.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "cranelift-codegen" -version = "0.46.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cranelift-bforest 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-codegen-meta 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-codegen-shared 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-bforest 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen-meta 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen-shared 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "cranelift-codegen-meta" -version = "0.46.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cranelift-codegen-shared 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen-shared 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "cranelift-codegen-shared" -version = "0.46.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cranelift-entity" -version = "0.46.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -523,37 +528,36 @@ dependencies = [ [[package]] name = "cranelift-frontend" -version = "0.46.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "cranelift-native" -version = "0.46.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "cranelift-wasm" -version = "0.46.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-frontend 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-frontend 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "wasmparser 0.39.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -879,16 +883,17 @@ dependencies = [ [[package]] name = "faerie" -version = "0.11.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "goblin 0.0.24 (registry+https://github.com/rust-lang/crates.io-index)", + "anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)", + "goblin 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "scroll 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", + "scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "string-interner 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -990,7 +995,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1273,12 +1278,12 @@ dependencies = [ [[package]] name = "goblin" -version = "0.0.24" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "plain 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "scroll 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", + "scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2398,6 +2403,11 @@ dependencies = [ "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "more-asserts" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "multimap" version = "0.4.0" @@ -2571,56 +2581,56 @@ dependencies = [ [[package]] name = "palette-executive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "palette-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "palette-support" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.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.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "palette-support-procedural" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2629,9 +2639,9 @@ dependencies = [ [[package]] name = "palette-support-procedural-tools" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2641,7 +2651,7 @@ dependencies = [ [[package]] name = "palette-support-procedural-tools-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2651,331 +2661,331 @@ dependencies = [ [[package]] name = "palette-system" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "palette-system-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "palette-system-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-authority-discovery" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-balances" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-collective" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-democracy" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-elections-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-im-online" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-indices" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-membership" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-nicks" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-offences" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-staking" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-staking-reward-curve" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2986,87 +2996,87 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-transaction-payment" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-treasury" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -3382,7 +3392,7 @@ dependencies = [ "parity-scale-codec 1.1.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-primitives 0.6.17", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -3394,7 +3404,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-service 0.6.17", "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3411,12 +3421,12 @@ dependencies = [ "polkadot-runtime 0.6.17", "polkadot-service 0.6.17", "polkadot-validation 0.6.17", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3427,8 +3437,8 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-primitives 0.6.17", "reed-solomon-erasure 4.0.0 (git+https://github.com/paritytech/reed-solomon-erasure)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -3436,7 +3446,7 @@ name = "polkadot-executor" version = "0.6.17" dependencies = [ "polkadot-runtime 0.6.17", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -3453,12 +3463,12 @@ dependencies = [ "polkadot-availability-store 0.6.17", "polkadot-primitives 0.6.17", "polkadot-validation 0.6.17", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -3474,8 +3484,8 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "shared_memory 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3485,18 +3495,18 @@ name = "polkadot-primitives" version = "0.6.17" dependencies = [ "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.6.17", "pretty_assertions 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -3504,14 +3514,14 @@ name = "polkadot-rpc" version = "0.6.17" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "polkadot-primitives 0.6.17", "polkadot-runtime 0.6.17", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -3522,33 +3532,33 @@ dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-parachain 0.6.17", "polkadot-primitives 0.6.17", @@ -3557,23 +3567,23 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3588,9 +3598,9 @@ dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "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 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-availability-store 0.6.17", "polkadot-executor 0.6.17", @@ -3600,26 +3610,26 @@ dependencies = [ "polkadot-runtime 0.6.17", "polkadot-validation 0.6.17", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -3628,7 +3638,7 @@ version = "0.6.17" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-primitives 0.6.17", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -3642,7 +3652,7 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.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.6.17", @@ -3650,20 +3660,20 @@ dependencies = [ "polkadot-primitives 0.6.17", "polkadot-runtime 0.6.17", "polkadot-statement-table 0.6.17", - "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3983,7 +3993,7 @@ dependencies = [ [[package]] name = "raw-cpuid" -version = "6.1.0" +version = "7.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4217,21 +4227,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "scroll" -version = "0.9.2" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "scroll_derive 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "scroll_derive 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "scroll_derive" -version = "0.9.5" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4416,6 +4425,11 @@ dependencies = [ "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "smallvec" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "snow" version = "0.6.1" @@ -4455,34 +4469,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sp-authorship" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "sp-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "sp-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -4493,21 +4507,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "sr-api-proc-macro" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" 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)", @@ -4519,37 +4533,37 @@ dependencies = [ [[package]] name = "sr-arithmetic" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "sr-io" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "sr-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4557,39 +4571,39 @@ dependencies = [ "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "sr-staking-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "sr-std" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" [[package]] name = "sr-version" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -4671,19 +4685,19 @@ dependencies = [ [[package]] name = "substrate-application-crypto" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-authority-discovery" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4695,24 +4709,24 @@ dependencies = [ "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-authority-discovery-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -4729,46 +4743,46 @@ dependencies = [ [[package]] name = "substrate-block-builder" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-block-builder-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-chain-spec" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-chain-spec-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4779,7 +4793,7 @@ dependencies = [ [[package]] name = "substrate-cli" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" 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)", @@ -4797,17 +4811,17 @@ dependencies = [ "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4815,7 +4829,7 @@ dependencies = [ [[package]] name = "substrate-client" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4827,27 +4841,27 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-client-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4859,26 +4873,26 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-client-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -4888,25 +4902,25 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-consensus-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4920,46 +4934,46 @@ dependencies = [ "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-consensus-babe-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-consensus-common" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4968,49 +4982,49 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-consensus-slots" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-consensus-uncles" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-debug-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5020,13 +5034,13 @@ dependencies = [ [[package]] name = "substrate-executor" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-frontend 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-native 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-frontend 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-native 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5034,39 +5048,39 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", - "wasmtime-jit 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", - "wasmtime-runtime 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", + "wasmtime-environ 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmtime-jit 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmtime-runtime 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-externalities" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-finality-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5074,18 +5088,18 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5093,69 +5107,69 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-header-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "lru 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-inherents" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-keyring" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-keystore" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5163,7 +5177,7 @@ dependencies = [ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5181,26 +5195,26 @@ dependencies = [ "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5214,30 +5228,30 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-panic-handler" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5246,7 +5260,7 @@ dependencies = [ [[package]] name = "substrate-peerset" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5257,17 +5271,17 @@ dependencies = [ [[package]] name = "substrate-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" 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)", @@ -5290,34 +5304,34 @@ dependencies = [ "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-primitives-storage" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5327,25 +5341,25 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-rpc-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5358,25 +5372,25 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-rpc-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-rpc-servers" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5385,28 +5399,28 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-runtime-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-runtime-interface-proc-macro" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" 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)", @@ -5418,7 +5432,7 @@ dependencies = [ [[package]] name = "substrate-serializer" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5427,7 +5441,7 @@ dependencies = [ [[package]] name = "substrate-service" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5441,26 +5455,26 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5470,28 +5484,28 @@ dependencies = [ [[package]] name = "substrate-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-state-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-state-machine" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" 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)", @@ -5499,10 +5513,10 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5510,7 +5524,7 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5532,54 +5546,54 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-transaction-pool" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-transaction-pool-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "substrate-trie" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5592,7 +5606,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "substrate-wasm-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets#113e7420d3b0a43e332243a1a94452c9d22a8222" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5658,13 +5672,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "target-lexicon" -version = "0.8.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "target_info" @@ -5710,6 +5719,24 @@ dependencies = [ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "thiserror" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "thiserror-impl 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "thread_local" version = "0.3.6" @@ -6299,85 +6326,89 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasmtime-debug" -version = "0.2.0" -source = "git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6#71dd73d672deb325664e3c9cd4ee7acebed5fb95" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "faerie 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "faerie 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", "gimli 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", - "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "wasmparser 0.39.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", + "wasmtime-environ 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasmtime-environ" -version = "0.2.0" -source = "git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6#71dd73d672deb325664e3c9cd4ee7acebed5fb95" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "directories 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "file-per-thread-logger 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmparser 0.39.3 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "zstd 0.4.28+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "zstd 0.5.1+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasmtime-jit" -version = "0.2.0" -source = "git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6#71dd73d672deb325664e3c9cd4ee7acebed5fb95" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-frontend 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-frontend 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "wasmparser 0.39.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmtime-debug 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", - "wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", - "wasmtime-runtime 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", + "wasmtime-debug 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmtime-environ 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmtime-runtime 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasmtime-runtime" -version = "0.2.0" -source = "git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6#71dd73d672deb325664e3c9cd4ee7acebed5fb95" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cranelift-wasm 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)", + "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmtime-environ 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -6543,11 +6574,6 @@ name = "zeroize" version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "zeroize" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "zeroize" version = "1.0.0" @@ -6555,24 +6581,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "zstd" -version = "0.4.28+zstd.1.4.3" +version = "0.5.1+zstd.1.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "zstd-safe 1.4.13+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "zstd-safe 2.0.3+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "zstd-safe" -version = "1.4.13+zstd.1.4.3" +version = "2.0.3+zstd.1.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "zstd-sys 1.4.13+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "zstd-sys 1.4.15+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "zstd-sys" -version = "1.4.13+zstd.1.4.3" +version = "1.4.15+zstd.1.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6604,6 +6630,7 @@ dependencies = [ "checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491" "checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" +"checksum base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" "checksum bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b8ab639324e3ee8774d296864fbc0dbbb256cf1a41c490b94cba90c082915f92" "checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" @@ -6637,14 +6664,14 @@ dependencies = [ "checksum const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7b641a8c9867e341f3295564203b1c250eb8ce6cb6126e007941f78c4d2ed7fe" "checksum const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c750ec12b83377637110d5a57f5ae08e895b06c4b16e2bdbf1a94ef717428c59" "checksum constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "995a44c877f9212528ccc74b21a232f66ad69001e40ede5bcee2ac9ef2657120" -"checksum cranelift-bforest 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "18c97588946d3e5fe11f8e34ebf8cc65fd3fda50f3ffa2e80c98b2748058f00f" -"checksum cranelift-codegen 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3255935da50302bcb0f7109f2fef27f44b46f1c797dfa7db971379261023adcd" -"checksum cranelift-codegen-meta 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd57265ef5e6ff253c378b6261ed8c2e6cb1b15e91624540dbd09b1e5a40e9ca" -"checksum cranelift-codegen-shared 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c093398d21f9493ab29445191362592ef621f497e56a8efb15bdf80471978b7a" -"checksum cranelift-entity 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e915fa58d2a75e3c4b768b7e4760282889915c3fcd9ccb2ad2b3ebec99654a78" -"checksum cranelift-frontend 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "46963952cda267bd0177b3f036e50038cd56e7b4c5b09a455b02df727e0f2a16" -"checksum cranelift-native 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7ba8a2d69ddd4729199a321bc2f4020e1969a088b468ed6a29dc7a69350be76e" -"checksum cranelift-wasm 0.46.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5a802357a6a016bf4c1dcdc6d73a650640eb3b613cc098a1a044a6c3731ca264" +"checksum cranelift-bforest 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bd05aac8cefcde54ce26178df8f36cb1f518ac691db650e7d2440c2b6b41c4dc" +"checksum cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63d9b6ff8a94f98deabab21880d7fd54996e0e16be687b6f80a3b6bdd9c188d" +"checksum cranelift-codegen-meta 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7cb3df51c2c07d719d02869bfac6cabd8d82ee308d5b29ca62e6528723cc33a4" +"checksum cranelift-codegen-shared 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)" = "758f9426b2e22bf83fc1a6b231a9d53cd4830751883c7f0e196ebb3c210467b3" +"checksum cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ff064733df8b98f453060264a8790393d1e807aca6942706b42f79a4f7aae9ed" +"checksum cranelift-frontend 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1eaafb5fa623dcbe19a28084a8226d7a1b17184a949c1a1f29a46b479867998d" +"checksum cranelift-native 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)" = "90033dbd7293f6fad4cf9dcd769cd621d60df22b1c5a11799e86359b7447a51d" +"checksum cranelift-wasm 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)" = "54cb82a1071f88822763a583ec1a8688ffe5e2cda02c111d4483dd4376ed14d8" "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" "checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" @@ -6681,7 +6708,7 @@ dependencies = [ "checksum errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c2a071601ed01b988f896ab14b95e67335d1eeb50190932a1320f7fe3cadc84e" "checksum errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067" "checksum exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48" -"checksum faerie 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "875d78b92b2a4d9e1e2c7eeccfa30a327d2ee6434db3beb8fd6fd92f41898bc4" +"checksum faerie 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f902f2af041f6c7177a2a04f805687cdc71e69c7cbef059a2755d8923f4cd7a8" "checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9" "checksum failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08" "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" @@ -6693,7 +6720,7 @@ dependencies = [ "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" "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 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" @@ -6726,7 +6753,7 @@ dependencies = [ "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" -"checksum goblin 0.0.24 (registry+https://github.com/rust-lang/crates.io-index)" = "e3fa261d919c1ae9d1e4533c4a2f99e10938603c4208d56c05bec7a872b661b0" +"checksum goblin 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5e6040506480da04a63de51a478e8021892d65d8411f29b2a422c2648bdd8bcb" "checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" "checksum hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" "checksum hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" @@ -6827,6 +6854,7 @@ dependencies = [ "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" +"checksum more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0debeb9fcf88823ea64d64e4a815ab1643f33127d995978e099942ce38f25238" "checksum multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb04b9f127583ed176e163fb9ec6f3e793b87e21deedd5734a69386a18a0151" "checksum multistream-select 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1242e4ecf2060b35fb58002988e4720fbb3a2cbd4c136d369c420fa028f69efe" "checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" @@ -6847,39 +6875,39 @@ dependencies = [ "checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" -"checksum palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-collective 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-democracy 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-elections-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-im-online 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-indices 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-membership 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-nicks 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-offences 1.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-staking 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-sudo 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)" = "" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" @@ -6946,7 +6974,7 @@ dependencies = [ "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -"checksum raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "30a9d219c32c9132f7be513c18be77c9881c7107d2ab5569d205a6a0f0e6dc7d" +"checksum raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4a349ca83373cfa5d6dbb66fd76e58b2cca08da71a5f6400de0a0a6a9bceeaf" "checksum rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "83a27732a533a1be0a0035a111fe76db89ad312f6f0347004c220c57f209a123" "checksum rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "98dcf634205083b17d0861252431eb2acbfb698ab7478a2d20de07954f47ec7b" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" @@ -6973,8 +7001,8 @@ dependencies = [ "checksum schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" = "eacd8381b3c37840c9c9f40472af529e49975bdcbc24f83c31059fd6539023d3" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" -"checksum scroll 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2f84d114ef17fd144153d608fba7c446b0145d038985e7a8cc5d08bb0ce20383" -"checksum scroll_derive 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8f1aa96c45e7f5a91cb7fabe7b279f02fea7126239fc40b732316e8b6a2d0fcb" +"checksum scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "abb2332cb595d33f7edd5700f4cbf94892e680c7f0ae56adab58a35190b66cb1" +"checksum scroll_derive 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8584eea9b9ff42825b46faf46a8c24d2cff13ec152fa2a50df788b87c07ee28" "checksum sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" @@ -6995,21 +7023,22 @@ dependencies = [ "checksum slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6" "checksum slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eff3b513cf2e0d1a60e1aba152dc72bedc5b05585722bb3cebd7bcb1e31b98f" "checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6" +"checksum smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4ecf3b85f68e8abaa7555aa5abdb1153079387e60b718283d732f03897fcfc86" "checksum snow 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "91eecae35b461ed26bda7a76bea2cc5bda2bf4b8dd06761879f19e6fdd50c2dd" "checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" -"checksum sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" -"checksum sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" "checksum stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" @@ -7020,58 +7049,58 @@ dependencies = [ "checksum structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "519621841414165d2ad0d4c92be8f41844203f2b67e245f9345a5a12d40c69d7" "checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" "checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" -"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3be511be555a3633e71739a79e4ddff6a6aaa6579fa6114182a51d72c3eb93c5" -"checksum substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" -"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-block-builder-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-runtime-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-runtime-interface-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" -"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=joe-a-palette-of-pallets)" = "" +"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" @@ -7079,12 +7108,14 @@ dependencies = [ "checksum synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545" "checksum sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)" = "6f4b2468c629cffba39c0a4425849ab3cdb03d9dfacba69684609aea04d08ff9" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" -"checksum target-lexicon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7975cb2c6f37d77b190bc5004a2bb015971464756fde9514651a525ada2a741a" +"checksum target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6f4c118a7a38378f305a9e111fcb2f7f838c0be324bfb31a77ea04f7f6e684b4" "checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" "checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" "checksum theban_interval_tree 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a7b42a5385db9a651628091edcd1d58ac9cb1c92327d8cd2a29bf8e35bdfe4ea" +"checksum thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "cc6b305ec0e323c7b6cfff6098a22516e0063d0bb7c3d88660a890217dca099a" +"checksum thiserror-impl 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45ba8d810d9c48fc456b7ad54574e8bfb7c7918a57ad7a6e6a0985d7959e8597" "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" "checksum threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865" "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" @@ -7147,10 +7178,10 @@ dependencies = [ "checksum wasmi-validation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab380192444b3e8522ae79c0a1976e42a82920916ccdfbce3def89f456ea33f3" "checksum wasmi-validation 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea78c597064ba73596099281e2f4cfc019075122a65cdda3205af94f0b264d93" "checksum wasmparser 0.39.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c702914acda5feeeffbc29e4d953e5b9ce79d8b98da4dbf18a77086e116c5470" -"checksum wasmtime-debug 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)" = "" -"checksum wasmtime-environ 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)" = "" -"checksum wasmtime-jit 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)" = "" -"checksum wasmtime-runtime 0.2.0 (git+https://github.com/CraneStation/wasmtime.git?rev=71dd73d6)" = "" +"checksum wasmtime-debug 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5008729ad53f75020f28fa0d682269335d6f0eac0b3ffafe31f185b2f33aca74" +"checksum wasmtime-environ 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a3947662a0b8e05b1418465e64f16de9114f9fec18cc3f56e0ed5aa7737b89d0" +"checksum wasmtime-jit 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6ed7922689461a7b5bd0d9c7350cac526c8a520a23b3ffd7f5b446ac51dfc51f" +"checksum wasmtime-runtime 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "781d6bb8b346efaa3dc39746386957cd79b8d841e8652ed9b02d77bcf64fb514" "checksum web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "ce8e893e021539beb87de8f06e77bdb390a3ab0db4cfeb569c4e377b55ed20de" "checksum webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e664e770ac0110e2384769bcc59ed19e329d81f555916a6e072714957b81b4" "checksum webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a262ae37dd9d60f60dd473d1158f9fbebf110ba7b6a5051c8160460f6043718b" @@ -7169,9 +7200,8 @@ dependencies = [ "checksum x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538" "checksum xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" "checksum yamux 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2758f29014c1cb7a6e74c1b1160ac8c8203be342d35b73462fc6a13cc6385423" -"checksum zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4090487fa66630f7b166fba2bbb525e247a5449f41c468cc1d98f8ae6ac03120" "checksum zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "45af6a010d13e4cf5b54c94ba5a2b2eba5596b9e46bf5875612d332a1f2b3f86" "checksum zeroize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cdc979d9b5ead18184c357c4d8a3f81b579aae264e32507223032e64715462d3" -"checksum zstd 0.4.28+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f4e716acaad66f2daf2526f37a1321674a8814c0b37a366ebe6c97a699f85ddc" -"checksum zstd-safe 1.4.13+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bfe4d3b26a0790201848865663e8ffabf091e126e548bc9710ccfa95621ece48" -"checksum zstd-sys 1.4.13+zstd.1.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fadc8ebe858f056ab82dffb9d93850b841603bdf663db7cf5e3dbd7f34cc55b2" +"checksum zstd 0.5.1+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5c5d978b793ae64375b80baf652919b148f6a496ac8802922d9999f5a553194f" +"checksum zstd-safe 2.0.3+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bee25eac9753cfedd48133fa1736cbd23b774e253d89badbeac7d12b23848d3f" +"checksum zstd-sys 1.4.15+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "89719b034dc22d240d5b407fb0a3fe6d29952c181cff9a9f95c0bd40b4f8f7d8" diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index edcde74c7cb9..9c0d96eb9441 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -10,7 +10,7 @@ polkadot-primitives = { path = "../primitives" } parking_lot = "0.9.0" log = "0.4.8" codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } kvdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 51df2956782d..2e56725e6d40 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -11,7 +11,7 @@ tokio = "0.1.22" futures = "0.1.29" exit-future = "0.1.4" structopt = "0.3.4" -cli = { package = "substrate-cli", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +cli = { package = "substrate-cli", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } service = { package = "polkadot-service", path = "../service" } [features] diff --git a/collator/Cargo.toml b/collator/Cargo.toml index a30aa8d05bd9..adeb300f2e23 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -8,11 +8,11 @@ edition = "2018" [dependencies] futures = "0.1.29" futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } polkadot-runtime = { path = "../runtime" } polkadot-primitives = { path = "../primitives" } polkadot-cli = { path = "../cli" } @@ -23,4 +23,4 @@ log = "0.4.8" tokio = "0.1.22" [dev-dependencies] -keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 305b45c25d59..8e9cd46fba56 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -8,5 +8,5 @@ edition = "2018" primitives = { package = "polkadot-primitives", path = "../primitives" } reed_solomon = { package = "reed-solomon-erasure", git = "https://github.com/paritytech/reed-solomon-erasure" } codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/executor/Cargo.toml b/executor/Cargo.toml index 264919ffadad..d7d97785ae6c 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -6,5 +6,5 @@ description = "Polkadot node implementation in Rust." edition = "2018" [dependencies] -substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } polkadot-runtime = { path = "../runtime" } diff --git a/network/Cargo.toml b/network/Cargo.toml index 9f92d4efb3b4..d7e6c257efd7 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -12,15 +12,15 @@ av_store = { package = "polkadot-availability-store", path = "../availability-st polkadot-validation = { path = "../validation" } polkadot-primitives = { path = "../primitives" } codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } futures = "0.1.29" futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } log = "0.4.8" exit-future = "0.1.4" -substrate-client = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } [dev-dependencies] -substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 29f7ace1bff3..4b46d6e8c425 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -10,8 +10,8 @@ codec = { package = "parity-scale-codec", version = "1.1.0", default-features = wasmi = { version = "0.4.5", optional = true } derive_more = { version = "0.14.1", optional = true } serde = { version = "1.0.102", default-features = false, features = [ "derive" ] } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets", default-features = false } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets", default-features = false } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } lazy_static = { version = "1.4.0", optional = true } parking_lot = { version = "0.7.1", optional = true } log = { version = "0.4.8", optional = true } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 8d9b91225614..4a31b16a0be6 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -7,18 +7,18 @@ 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 = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets", default-features = false } -sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } polkadot-parachain = { path = "../parachain", default-features = false } bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] } -babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } [dev-dependencies] -substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } pretty_assertions = "0.5.1" [features] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 0356c2cc03be..e32efd20f470 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -5,13 +5,13 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } jsonrpc-core = "14.0.3" polkadot-primitives = { path = "../primitives" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -substrate-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -palette-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +palette-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } polkadot-runtime = { path = "../runtime" } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index ffd77b334a25..b3679ff7cbff 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -14,49 +14,49 @@ safe-mix = { version = "1.0.0", default-features = false } serde = { version = "1.0.102", default-features = false } serde_derive = { version = "1.0.102", optional = true } -authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets", default-features = false } -inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -sr-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -sr-staking-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -tx-pool-api = { package = "substrate-transaction-pool-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -block-builder-api = { package = "substrate-block-builder-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false } +inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +sr-staking-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +tx-pool-api = { package = "substrate-transaction-pool-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +block-builder-api = { package = "substrate-block-builder-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -executive = { package = "palette-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "joe-a-palette-of-pallets" } -im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -palette-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -system = { package = "palette-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -system_rpc_runtime_api = { package = "palette-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +executive = { package = "palette-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "polkadot-master" } +im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +palette-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +system = { package = "palette-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +system_rpc_runtime_api = { package = "palette-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } primitives = { package = "polkadot-primitives", path = "../primitives", default-features = false } polkadot-parachain = { path = "../parachain", default-features = false } @@ -65,8 +65,8 @@ polkadot-parachain = { path = "../parachain", default-features = false } hex-literal = "0.2.1" libsecp256k1 = "0.3.2" tiny-keccak = "1.5.0" -keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } trie-db = "0.15.2" serde_json = "1.0.41" diff --git a/service/Cargo.toml b/service/Cargo.toml index 4376e5633d19..32f5b955bd7a 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -19,26 +19,26 @@ polkadot-runtime = { path = "../runtime" } polkadot-executor = { path = "../executor" } polkadot-network = { path = "../network" } polkadot-rpc = { path = "../rpc" } -sr-io = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -client-db = { package = "substrate-client-db", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -substrate-network = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -grandpa_primitives = { package = "substrate-finality-grandpa-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -service = { package = "substrate-service", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -telemetry = { package = "substrate-telemetry", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -substrate-keystore = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } -authority-discovery = { package = "substrate-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -babe = { package = "substrate-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "joe-a-palette-of-pallets" } +sr-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client-db = { package = "substrate-client-db", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +grandpa_primitives = { package = "substrate-finality-grandpa-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +service = { package = "substrate-service", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +telemetry = { package = "substrate-telemetry", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +substrate-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +authority-discovery = { package = "substrate-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +babe = { package = "substrate-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index ffd074efad40..37e76f46998f 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"] } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/test-parachains/adder/Cargo.toml b/test-parachains/adder/Cargo.toml index 1fd901366f15..de9fae02d209 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 = "sr-io", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets", default-features = false, features = [ "disable_allocator" ] } +runtime-io = { package = "sr-io", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false, features = [ "disable_allocator" ] } [build-dependencies] wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.4" } diff --git a/test-parachains/adder/collator/Cargo.toml b/test-parachains/adder/collator/Cargo.toml index b55dc138628c..0a86193b77fe 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" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } parking_lot = "0.9.0" ctrlc = { version = "3.1.3", features = ["termination"] } futures = "0.1.29" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 0e3f53660139..2eadf2cbf278 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -19,21 +19,21 @@ parachain = { package = "polkadot-parachain", path = "../parachain" } polkadot-primitives = { path = "../primitives" } polkadot-runtime = { path = "../runtime" } table = { package = "polkadot-statement-table", path = "../statement-table" } -grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -consensus = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -sr-api = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -block-builder = { package = "substrate-block-builder", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +grandpa = { package = "substrate-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +consensus = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sr-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +block-builder = { package = "substrate-block-builder", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +trie = { package = "substrate-trie", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] } -runtime_babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } -keystore = { package = "substrate-keystore", git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +runtime_babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +keystore = { package = "substrate-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } [dev-dependencies] -substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "joe-a-palette-of-pallets" } +substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } From 24e82f00f21d664f6f23b40015229810106a6752 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Thu, 21 Nov 2019 15:59:02 +0100 Subject: [PATCH 06/14] Use same commit hash of parity-common --- Cargo.lock | 59 ++--------------------------------- availability-store/Cargo.toml | 6 ++-- 2 files changed, 6 insertions(+), 59 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f27dee58e994..921b3e663ab9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1711,15 +1711,6 @@ dependencies = [ "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "kvdb" -version = "0.1.0" -source = "git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6#616b40150ded71f57f650067fcbc5c99d7c343e6" -dependencies = [ - "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)", -] - [[package]] name = "kvdb" version = "0.1.0" @@ -1729,15 +1720,6 @@ dependencies = [ "parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", ] -[[package]] -name = "kvdb-memorydb" -version = "0.1.0" -source = "git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6#616b40150ded71f57f650067fcbc5c99d7c343e6" -dependencies = [ - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)", - "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "kvdb-memorydb" version = "0.1.0" @@ -1747,22 +1729,6 @@ dependencies = [ "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "kvdb-rocksdb" -version = "0.1.4" -source = "git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6#616b40150ded71f57f650067fcbc5c99d7c343e6" -dependencies = [ - "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rocksdb 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "kvdb-rocksdb" version = "0.1.4" @@ -3079,11 +3045,6 @@ dependencies = [ "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] -[[package]] -name = "parity-bytes" -version = "0.1.0" -source = "git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6#616b40150ded71f57f650067fcbc5c99d7c343e6" - [[package]] name = "parity-bytes" version = "0.1.0" @@ -3385,9 +3346,9 @@ dependencies = [ name = "polkadot-availability-store" version = "0.6.17" dependencies = [ - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)", - "kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)", - "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4104,15 +4065,6 @@ dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "rocksdb" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "rocksdb" version = "0.11.0" @@ -6798,11 +6750,8 @@ dependencies = [ "checksum jsonrpc-ws-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af36a129cef77a9db8028ac7552d927e1bb7b6928cd96b23dd25cc38bff974ab" "checksum keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -"checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)" = "" "checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)" = "" "checksum kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)" = "" "checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" @@ -6908,7 +6857,6 @@ dependencies = [ "checksum pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=616b40150ded71f57f650067fcbc5c99d7c343e6)" = "" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" "checksum parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82afcb7461eae5d122543d8be1c57d306ed89af2d6ff7f8b0f5a3cc8f7e511bc" @@ -6986,7 +6934,6 @@ dependencies = [ "checksum region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "448e868c6e4cfddfa49b6a72c95906c04e8547465e9536575b95c70a4044f856" "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" "checksum ring 0.16.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6747f8da1f2b1fabbee1aaa4eb8a11abf9adef0bf58a41cee45db5d59cecdfac" -"checksum rocksdb 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "39be726e556e6f21d54d21cdf1be9f6df30c0411a5856c1abf3f4bb12498f2ed" "checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" "checksum rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f072d931f11a96546efd97642e1e75e807345aced86b947f9239102f262d0fcd" "checksum rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ca4eaef519b494d1f2848fc602d18816fed808a981aedf4f1f00ceb7c9d32cf" diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index 9c0d96eb9441..0052b8f819bd 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -11,6 +11,6 @@ parking_lot = "0.9.0" log = "0.4.8" codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] } substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -kvdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } -kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } -kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" } +kvdb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } +kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } +kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } From db2e2d7b7863513371d2e06a7d6eb44af9cabd45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Fri, 22 Nov 2019 14:19:52 +0100 Subject: [PATCH 07/14] Resolve linking errors --- Cargo.lock | 341 ++++++++++++++++------------------ Cargo.toml | 3 + availability-store/Cargo.toml | 6 +- 3 files changed, 165 insertions(+), 185 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 921b3e663ab9..9e9d700cc323 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -226,22 +226,23 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.47.3" +version = "0.49.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)", + "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -418,10 +419,10 @@ dependencies = [ [[package]] name = "clang-sys" -version = "0.26.4" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -995,7 +996,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1199,6 +1200,14 @@ dependencies = [ "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "gcc" version = "0.3.55" @@ -1254,11 +1263,6 @@ dependencies = [ "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "glob" -version = "0.2.11" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "glob" version = "0.3.0" @@ -1713,36 +1717,37 @@ dependencies = [ [[package]] name = "kvdb" -version = "0.1.0" -source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" +version = "0.1.1" +source = "git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f#06d23cf4c3d84c057a20d3016341672b3063267f" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "parity-bytes 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", ] [[package]] name = "kvdb-memorydb" -version = "0.1.0" -source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" +version = "0.1.2" +source = "git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f#06d23cf4c3d84c057a20d3016341672b3063267f" dependencies = [ - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "kvdb-rocksdb" -version = "0.1.4" -source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" +version = "0.1.6" +source = "git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f#06d23cf4c3d84c057a20d3016341672b3063267f" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rocksdb 0.13.0 (git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys)", ] [[package]] @@ -2141,13 +2146,14 @@ dependencies = [ [[package]] name = "librocksdb-sys" -version = "5.18.3" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "6.2.4" +source = "git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys#b54d3fff6bb7d186a5b34322931db65cee4527ef" dependencies = [ - "bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)", + "bindgen 0.49.2 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "zstd-sys 1.4.15+zstd.1.4.4 (git+https://github.com/bkchr/zstd-rs.git?branch=bkchr-export-include-paths2)", ] [[package]] @@ -2547,7 +2553,7 @@ dependencies = [ [[package]] name = "palette-executive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2561,7 +2567,7 @@ dependencies = [ [[package]] name = "palette-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2572,7 +2578,7 @@ dependencies = [ [[package]] name = "palette-support" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2594,7 +2600,7 @@ dependencies = [ [[package]] name = "palette-support-procedural" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2605,7 +2611,7 @@ dependencies = [ [[package]] name = "palette-support-procedural-tools" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2617,7 +2623,7 @@ dependencies = [ [[package]] name = "palette-support-procedural-tools-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2627,7 +2633,7 @@ dependencies = [ [[package]] name = "palette-system" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2644,7 +2650,7 @@ dependencies = [ [[package]] name = "palette-system-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2662,7 +2668,7 @@ dependencies = [ [[package]] name = "palette-system-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2671,7 +2677,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2689,7 +2695,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2706,7 +2712,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2727,7 +2733,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2742,7 +2748,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2758,7 +2764,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2773,7 +2779,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2786,7 +2792,7 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2802,7 +2808,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2820,7 +2826,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2839,7 +2845,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2856,7 +2862,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2870,7 +2876,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2884,7 +2890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2899,7 +2905,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2912,7 +2918,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2931,7 +2937,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2951,7 +2957,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2962,7 +2968,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2976,7 +2982,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2992,7 +2998,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3005,7 +3011,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3022,7 +3028,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3034,7 +3040,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3047,8 +3053,8 @@ dependencies = [ [[package]] name = "parity-bytes" -version = "0.1.0" -source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" +version = "0.1.1" +source = "git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f#06d23cf4c3d84c057a20d3016341672b3063267f" [[package]] name = "parity-multiaddr" @@ -3168,15 +3174,6 @@ name = "parity-wasm" version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "parking_lot" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "parking_lot" version = "0.7.1" @@ -3206,18 +3203,6 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "parking_lot_core" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "parking_lot_core" version = "0.4.0" @@ -3346,9 +3331,9 @@ dependencies = [ name = "polkadot-availability-store" version = "0.6.17" dependencies = [ - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "kvdb-memorydb 0.1.2 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "kvdb-rocksdb 0.1.6 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3807,18 +3792,6 @@ dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "rand" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "rand" version = "0.6.5" @@ -4067,11 +4040,11 @@ dependencies = [ [[package]] name = "rocksdb" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.13.0" +source = "git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys#b54d3fff6bb7d186a5b34322931db65cee4527ef" dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)", + "librocksdb-sys 6.2.4 (git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys)", ] [[package]] @@ -4313,6 +4286,11 @@ dependencies = [ "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "shlex" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "slab" version = "0.4.2" @@ -4421,7 +4399,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sp-authorship" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4431,7 +4409,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4441,7 +4419,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4459,7 +4437,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4473,7 +4451,7 @@ dependencies = [ [[package]] name = "sr-api-proc-macro" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" 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)", @@ -4485,7 +4463,7 @@ dependencies = [ [[package]] name = "sr-arithmetic" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4498,7 +4476,7 @@ dependencies = [ [[package]] name = "sr-io" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4515,7 +4493,7 @@ dependencies = [ [[package]] name = "sr-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4534,7 +4512,7 @@ dependencies = [ [[package]] name = "sr-staking-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4544,12 +4522,12 @@ dependencies = [ [[package]] name = "sr-std" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" [[package]] name = "sr-version" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4637,7 +4615,7 @@ dependencies = [ [[package]] name = "substrate-application-crypto" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4649,7 +4627,7 @@ dependencies = [ [[package]] name = "substrate-authority-discovery" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4672,7 +4650,7 @@ dependencies = [ [[package]] name = "substrate-authority-discovery-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4695,7 +4673,7 @@ dependencies = [ [[package]] name = "substrate-block-builder" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4708,7 +4686,7 @@ dependencies = [ [[package]] name = "substrate-block-builder-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4719,7 +4697,7 @@ dependencies = [ [[package]] name = "substrate-chain-spec" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4734,7 +4712,7 @@ dependencies = [ [[package]] name = "substrate-chain-spec-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4745,7 +4723,7 @@ dependencies = [ [[package]] name = "substrate-cli" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" 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)", @@ -4781,7 +4759,7 @@ dependencies = [ [[package]] name = "substrate-client" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4789,7 +4767,7 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4813,7 +4791,7 @@ dependencies = [ [[package]] name = "substrate-client-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4821,7 +4799,7 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4844,12 +4822,12 @@ dependencies = [ [[package]] name = "substrate-client-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "kvdb-memorydb 0.1.2 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "kvdb-rocksdb 0.1.6 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4869,7 +4847,7 @@ dependencies = [ [[package]] name = "substrate-consensus-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4909,7 +4887,7 @@ dependencies = [ [[package]] name = "substrate-consensus-babe-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4925,7 +4903,7 @@ dependencies = [ [[package]] name = "substrate-consensus-common" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4944,7 +4922,7 @@ dependencies = [ [[package]] name = "substrate-consensus-slots" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4962,7 +4940,7 @@ dependencies = [ [[package]] name = "substrate-consensus-uncles" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4976,7 +4954,7 @@ dependencies = [ [[package]] name = "substrate-debug-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4986,7 +4964,7 @@ dependencies = [ [[package]] name = "substrate-executor" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5018,7 +4996,7 @@ dependencies = [ [[package]] name = "substrate-externalities" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5029,7 +5007,7 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5059,7 +5037,7 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5072,7 +5050,7 @@ dependencies = [ [[package]] name = "substrate-header-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "lru 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5082,7 +5060,7 @@ dependencies = [ [[package]] name = "substrate-inherents" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5094,7 +5072,7 @@ dependencies = [ [[package]] name = "substrate-keyring" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5106,7 +5084,7 @@ dependencies = [ [[package]] name = "substrate-keystore" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5121,7 +5099,7 @@ dependencies = [ [[package]] name = "substrate-network" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5166,7 +5144,7 @@ dependencies = [ [[package]] name = "substrate-offchain" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5194,7 +5172,7 @@ dependencies = [ [[package]] name = "substrate-offchain-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5203,7 +5181,7 @@ dependencies = [ [[package]] name = "substrate-panic-handler" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5212,7 +5190,7 @@ dependencies = [ [[package]] name = "substrate-peerset" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5223,7 +5201,7 @@ dependencies = [ [[package]] name = "substrate-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5233,7 +5211,7 @@ dependencies = [ [[package]] name = "substrate-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" 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)", @@ -5272,7 +5250,7 @@ dependencies = [ [[package]] name = "substrate-primitives-storage" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5283,7 +5261,7 @@ dependencies = [ [[package]] name = "substrate-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5311,7 +5289,7 @@ dependencies = [ [[package]] name = "substrate-rpc-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5333,7 +5311,7 @@ dependencies = [ [[package]] name = "substrate-rpc-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5342,7 +5320,7 @@ dependencies = [ [[package]] name = "substrate-rpc-servers" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5357,7 +5335,7 @@ dependencies = [ [[package]] name = "substrate-runtime-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5372,7 +5350,7 @@ dependencies = [ [[package]] name = "substrate-runtime-interface-proc-macro" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" 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)", @@ -5384,7 +5362,7 @@ dependencies = [ [[package]] name = "substrate-serializer" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5393,7 +5371,7 @@ dependencies = [ [[package]] name = "substrate-service" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5436,7 +5414,7 @@ dependencies = [ [[package]] name = "substrate-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5446,7 +5424,7 @@ dependencies = [ [[package]] name = "substrate-state-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5457,7 +5435,7 @@ dependencies = [ [[package]] name = "substrate-state-machine" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" 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)", @@ -5476,7 +5454,7 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5498,7 +5476,7 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5512,7 +5490,7 @@ dependencies = [ [[package]] name = "substrate-transaction-pool" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5529,7 +5507,7 @@ dependencies = [ [[package]] name = "substrate-transaction-pool-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5539,7 +5517,7 @@ dependencies = [ [[package]] name = "substrate-trie" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5558,7 +5536,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "substrate-wasm-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#3bf9540e72df5ecb3955845764dfee7dcdbb26b5" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6545,16 +6523,17 @@ version = "2.0.3+zstd.1.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "zstd-sys 1.4.15+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "zstd-sys 1.4.15+zstd.1.4.4 (git+https://github.com/bkchr/zstd-rs.git?branch=bkchr-export-include-paths2)", ] [[package]] name = "zstd-sys" version = "1.4.15+zstd.1.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/bkchr/zstd-rs.git?branch=bkchr-export-include-paths2#e772a2c4df056aa0e5ca59b0734100d4d37e62c5" dependencies = [ "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -6584,7 +6563,7 @@ dependencies = [ "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" "checksum base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" "checksum bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b8ab639324e3ee8774d296864fbc0dbbb256cf1a41c490b94cba90c082915f92" -"checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" +"checksum bindgen 0.49.2 (registry+https://github.com/rust-lang/crates.io-index)" = "846a1fba6535362a01487ef6b10f0275faa12e5c5d835c5c1c627aabc46ccbd6" "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" "checksum bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead" "checksum bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a993f74b4c99c1908d156b8d2e0fb6277736b0ecbd833982fd1241d39b2766a6" @@ -6609,7 +6588,7 @@ dependencies = [ "checksum cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" -"checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" +"checksum clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853" "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" "checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" @@ -6696,13 +6675,13 @@ dependencies = [ "checksum futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "878f1d2fc31355fa02ed2372e741b0c17e58373341e6a122569b4623a14a7d33" "checksum futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c0d66274fb76985d3c62c886d1da7ac4c0903a8c9f754e8fe0f35a6a6cc39e76" "checksum futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "5ce968633c17e5f97936bd2797b6e38fb56cf16a7422319f7ec2e30d3c470e8d" +"checksum fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" "checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" "checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" "checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407" "checksum gimli 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)" = "162d18ae5f2e3b90a993d202f1ba17a5633c2484426f8bcae201f86194bacd00" -"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" "checksum goblin 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5e6040506480da04a63de51a478e8021892d65d8411f29b2a422c2648bdd8bcb" @@ -6750,9 +6729,9 @@ dependencies = [ "checksum jsonrpc-ws-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af36a129cef77a9db8028ac7552d927e1bb7b6928cd96b23dd25cc38bff974ab" "checksum keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -"checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" +"checksum kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)" = "" +"checksum kvdb-memorydb 0.1.2 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)" = "" +"checksum kvdb-rocksdb 0.1.6 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)" = "" "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" "checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" @@ -6777,7 +6756,7 @@ dependencies = [ "checksum libp2p-wasm-ext 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f7b8f2bd81fb356e81352d4513856bc21215ecf91502aa1f55b6449642a9acf" "checksum libp2p-websocket 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d74d4fc229ad7e8d1a973178786bdcd5dadbdd7b9822c4477c8687df6f82f66" "checksum libp2p-yamux 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1913eb7dd6eb5515957b6f1770296f6921968db87bc9b985f0e974b6657e1003" -"checksum librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d19778314deaa7048f2ea7d07b8aa12e1c227acebe975a37eeab6d2f8c74e41b" +"checksum librocksdb-sys 6.2.4 (git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys)" = "" "checksum libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd9a7c16c9487e710536b699c962f022266347c94201174aa0a7eb0546051aa" "checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe" "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" @@ -6857,7 +6836,7 @@ dependencies = [ "checksum pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" +"checksum parity-bytes 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" "checksum parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82afcb7461eae5d122543d8be1c57d306ed89af2d6ff7f8b0f5a3cc8f7e511bc" "checksum parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3" @@ -6869,11 +6848,9 @@ dependencies = [ "checksum parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)" = "511379a8194230c2395d2f5fa627a5a7e108a9f976656ce723ae68fca4097bfc" "checksum parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1e39faaa292a687ea15120b1ac31899b13586446521df6c149e46f1584671e0f" "checksum parity-wasm 0.41.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc878dac00da22f8f61e7af3157988424567ab01d9920b962ef7dcbd7cd865" -"checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" "checksum parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa7767817701cce701d5585b9c4db3cdd02086398322c1d7e8bf5094a96a2ce7" "checksum parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" -"checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" "checksum parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb88cb1cb3790baa6776844f968fea3be44956cf184fa1be5a03341f5491278c" "checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" @@ -6907,7 +6884,6 @@ dependencies = [ "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" -"checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" "checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" @@ -6934,7 +6910,7 @@ dependencies = [ "checksum region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "448e868c6e4cfddfa49b6a72c95906c04e8547465e9536575b95c70a4044f856" "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" "checksum ring 0.16.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6747f8da1f2b1fabbee1aaa4eb8a11abf9adef0bf58a41cee45db5d59cecdfac" -"checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" +"checksum rocksdb 0.13.0 (git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys)" = "" "checksum rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f072d931f11a96546efd97642e1e75e807345aced86b947f9239102f262d0fcd" "checksum rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ca4eaef519b494d1f2848fc602d18816fed808a981aedf4f1f00ceb7c9d32cf" "checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" @@ -6963,6 +6939,7 @@ dependencies = [ "checksum sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf" "checksum shared_memory 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "be289420c5900abb177b756f39625ca7a0df68069cfb242fb31feb6e8c480f04" "checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" +"checksum shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2" "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" "checksum slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99" "checksum slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)" = "" @@ -7151,4 +7128,4 @@ dependencies = [ "checksum zeroize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cdc979d9b5ead18184c357c4d8a3f81b579aae264e32507223032e64715462d3" "checksum zstd 0.5.1+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5c5d978b793ae64375b80baf652919b148f6a496ac8802922d9999f5a553194f" "checksum zstd-safe 2.0.3+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bee25eac9753cfedd48133fa1736cbd23b774e253d89badbeac7d12b23848d3f" -"checksum zstd-sys 1.4.15+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "89719b034dc22d240d5b407fb0a3fe6d29952c181cff9a9f95c0bd40b4f8f7d8" +"checksum zstd-sys 1.4.15+zstd.1.4.4 (git+https://github.com/bkchr/zstd-rs.git?branch=bkchr-export-include-paths2)" = "" diff --git a/Cargo.toml b/Cargo.toml index ddd2554aa6a7..23a64735735e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,3 +47,6 @@ maintenance = { status = "actively-developed" } [profile.release] # Polkadot runtime requires unwinding. panic = "unwind" + +[patch.crates-io] +zstd-sys = { git = "https://github.com/bkchr/zstd-rs.git", branch = "bkchr-export-include-paths2" } diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index 0052b8f819bd..01245778cc7d 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -11,6 +11,6 @@ parking_lot = "0.9.0" log = "0.4.8" codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] } substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -kvdb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } -kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } -kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } +kvdb = { git = "https://github.com/paritytech/parity-common", rev="06d23cf4c3d84c057a20d3016341672b3063267f" } +kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="06d23cf4c3d84c057a20d3016341672b3063267f" } +kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="06d23cf4c3d84c057a20d3016341672b3063267f" } From f9c5e729104ead829784dba553298766f61ab73e Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Fri, 22 Nov 2019 18:17:37 +0100 Subject: [PATCH 08/14] Rename to frame --- Cargo.lock | 146 ++++++++++++++++++------------------ rpc/Cargo.toml | 2 +- rpc/src/lib.rs | 4 +- runtime/Cargo.toml | 10 +-- runtime/src/attestations.rs | 2 +- runtime/src/claims.rs | 6 +- runtime/src/crowdfund.rs | 4 +- runtime/src/impls.rs | 2 +- runtime/src/lib.rs | 2 +- runtime/src/parachains.rs | 4 +- runtime/src/registrar.rs | 4 +- runtime/src/slots.rs | 4 +- 12 files changed, 95 insertions(+), 95 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9e9d700cc323..b046baaddf2f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2551,12 +2551,12 @@ dependencies = [ ] [[package]] -name = "palette-executive" +name = "frame-executive" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2565,7 +2565,7 @@ dependencies = [ ] [[package]] -name = "palette-metadata" +name = "frame-metadata" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ @@ -2576,7 +2576,7 @@ dependencies = [ ] [[package]] -name = "palette-support" +name = "frame-support" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ @@ -2584,8 +2584,8 @@ dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.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.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2598,22 +2598,22 @@ dependencies = [ ] [[package]] -name = "palette-support-procedural" +name = "frame-support-procedural" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "palette-support-procedural-tools" +name = "frame-support-procedural-tools" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2621,7 +2621,7 @@ dependencies = [ ] [[package]] -name = "palette-support-procedural-tools-derive" +name = "frame-support-procedural-tools-derive" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ @@ -2631,12 +2631,12 @@ dependencies = [ ] [[package]] -name = "palette-system" +name = "frame-system" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2648,7 +2648,7 @@ dependencies = [ ] [[package]] -name = "palette-system-rpc" +name = "frame-system-rpc" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ @@ -2656,7 +2656,7 @@ dependencies = [ "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2666,7 +2666,7 @@ dependencies = [ ] [[package]] -name = "palette-system-rpc-runtime-api" +name = "frame-system-rpc-runtime-api" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ @@ -2679,8 +2679,8 @@ name = "pallet-authority-discovery" version = "0.1.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2698,8 +2698,8 @@ version = "0.1.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2715,8 +2715,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2735,8 +2735,8 @@ name = "pallet-balances" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2750,8 +2750,8 @@ name = "pallet-collective" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2766,8 +2766,8 @@ name = "pallet-democracy" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2781,8 +2781,8 @@ name = "pallet-elections-phragmen" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2795,8 +2795,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2810,8 +2810,8 @@ name = "pallet-grandpa" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2828,8 +2828,8 @@ name = "pallet-im-online" version = "0.1.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2847,8 +2847,8 @@ name = "pallet-indices" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2864,8 +2864,8 @@ name = "pallet-membership" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2878,8 +2878,8 @@ name = "pallet-nicks" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2892,8 +2892,8 @@ name = "pallet-offences" version = "1.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2907,8 +2907,8 @@ name = "pallet-randomness-collective-flip" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2921,8 +2921,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2939,8 +2939,8 @@ name = "pallet-staking" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2970,8 +2970,8 @@ name = "pallet-sudo" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2985,8 +2985,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3000,8 +3000,8 @@ name = "pallet-transaction-payment" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3042,8 +3042,8 @@ name = "pallet-treasury" version = "2.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" dependencies = [ - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-balances 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3460,7 +3460,7 @@ name = "polkadot-rpc" version = "0.6.17" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "polkadot-primitives 0.6.17", "polkadot-runtime 0.6.17", @@ -3478,10 +3478,10 @@ dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -6803,15 +6803,15 @@ dependencies = [ "checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" -"checksum palette-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum palette-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index e32efd20f470..139b785a4087 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -11,7 +11,7 @@ polkadot-primitives = { path = "../primitives" } sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } substrate-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } transaction_pool = { package = "substrate-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -palette-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } +frame-system-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } polkadot-runtime = { path = "../runtime" } diff --git a/rpc/src/lib.rs b/rpc/src/lib.rs index 941e1f7a1a2b..5c645243a220 100644 --- a/rpc/src/lib.rs +++ b/rpc/src/lib.rs @@ -33,11 +33,11 @@ pub fn create(client: Arc, pool: Arc>) -> RpcExtension where C: ProvideRuntimeApi, C: client::blockchain::HeaderBackend, C: Send + Sync + 'static, - C::Api: palette_system_rpc::AccountNonceApi, + C::Api: frame_system_rpc::AccountNonceApi, C::Api: pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi, P: ChainApi + Sync + Send + 'static, { - use palette_system_rpc::{System, SystemApi}; + use frame_system_rpc::{System, SystemApi}; use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApi}; let mut io = jsonrpc_core::IoHandler::default(); diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index b3679ff7cbff..094eebea2d5a 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -39,7 +39,7 @@ pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/parityt collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -executive = { package = "palette-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, features = ["migrate-authorities"], branch = "polkadot-master" } im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -49,12 +49,12 @@ nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substra offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -palette-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -system = { package = "palette-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } -system_rpc_runtime_api = { package = "palette-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +system = { package = "frame-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } +system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } @@ -93,7 +93,7 @@ std = [ "offchain-primitives/std", "rstd/std", "sr-io/std", - "palette-support/std", + "frame-support/std", "authorship/std", "balances/std", "transaction-payment/std", diff --git a/runtime/src/attestations.rs b/runtime/src/attestations.rs index f71c99794b5a..ff6b46c86d4e 100644 --- a/runtime/src/attestations.rs +++ b/runtime/src/attestations.rs @@ -21,7 +21,7 @@ use rstd::prelude::*; use codec::{Encode, Decode}; -use palette_support::{decl_storage, decl_module, ensure, dispatch::Result, traits::Get}; +use frame_support::{decl_storage, decl_module, ensure, dispatch::Result, traits::Get}; use primitives::{Hash, parachain::{AttestedCandidate, CandidateReceipt, Id as ParaId}}; use sr_primitives::RuntimeDebug; diff --git a/runtime/src/claims.rs b/runtime/src/claims.rs index cf0ba52f1714..c0548bef1980 100644 --- a/runtime/src/claims.rs +++ b/runtime/src/claims.rs @@ -18,8 +18,8 @@ use rstd::prelude::*; use sr_io::{hashing::keccak_256, crypto::secp256k1_ecdsa_recover}; -use palette_support::{decl_event, decl_storage, decl_module}; -use palette_support::traits::{Currency, Get}; +use frame_support::{decl_event, decl_storage, decl_module}; +use frame_support::traits::{Currency, Get}; use system::{ensure_root, ensure_none}; use codec::{Encode, Decode}; #[cfg(feature = "std")] @@ -249,7 +249,7 @@ mod tests { // or public keys. `u64` is used as the `AccountId` and no `Signature`s are required. use sr_primitives::{Perbill, traits::{BlakeTwo256, IdentityLookup}, testing::Header}; use balances; - use palette_support::{impl_outer_origin, assert_ok, assert_err, assert_noop, parameter_types}; + use frame_support::{impl_outer_origin, assert_ok, assert_err, assert_noop, parameter_types}; impl_outer_origin! { pub enum Origin for Test {} diff --git a/runtime/src/crowdfund.rs b/runtime/src/crowdfund.rs index 5891dd056478..b634e0c89220 100644 --- a/runtime/src/crowdfund.rs +++ b/runtime/src/crowdfund.rs @@ -66,7 +66,7 @@ //! order to win a later auction, then it is the parachain's duty to ensure that the right amount of //! funds ultimately end up in module's fund sub-account. -use palette_support::{ +use frame_support::{ decl_module, decl_storage, decl_event, storage::child, ensure, traits::{ Currency, Get, OnUnbalanced, WithdrawReason, ExistenceRequirement::AllowDeath } @@ -489,7 +489,7 @@ mod tests { use super::*; use std::{collections::HashMap, cell::RefCell}; - use palette_support::{impl_outer_origin, assert_ok, assert_noop, parameter_types}; + use frame_support::{impl_outer_origin, assert_ok, assert_noop, parameter_types}; use substrate_primitives::H256; use primitives::parachain::{Info as ParaInfo, Id as ParaId}; // The testing primitives are very useful for avoiding having to work with signatures diff --git a/runtime/src/impls.rs b/runtime/src/impls.rs index 1a27f9b389b3..ce2528e41c11 100644 --- a/runtime/src/impls.rs +++ b/runtime/src/impls.rs @@ -20,7 +20,7 @@ use primitives::Balance; use sr_primitives::weights::Weight; use sr_primitives::traits::{Convert, Saturating}; use sr_primitives::{Fixed64, Perbill}; -use palette_support::traits::{OnUnbalanced, Currency, Get}; +use frame_support::traits::{OnUnbalanced, Currency, Get}; use crate::{Balances, System, Authorship, MaximumBlockWeight, NegativeImbalance}; /// Logic for the author to get a portion of fees. diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index ec321d5b8986..fe694991ccad 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -48,7 +48,7 @@ use grandpa::{AuthorityId as GrandpaId, fg_primitives}; use version::NativeVersion; use substrate_primitives::OpaqueMetadata; use sr_staking_primitives::SessionIndex; -use palette_support::{ +use frame_support::{ parameter_types, construct_runtime, traits::{SplitTwoWays, Currency, Randomness} }; use im_online::sr25519::AuthorityId as ImOnlineId; diff --git a/runtime/src/parachains.rs b/runtime/src/parachains.rs index 3ab9da5f300d..431803202822 100644 --- a/runtime/src/parachains.rs +++ b/runtime/src/parachains.rs @@ -33,7 +33,7 @@ use primitives::{ UpwardMessage, BlockIngressRoots, ValidatorId, ActiveParas, CollatorId, Retriable }, }; -use palette_support::{ +use frame_support::{ Parameter, dispatch::Result, decl_storage, decl_module, ensure, traits::{Currency, Get, WithdrawReason, ExistenceRequirement, Randomness}, }; @@ -917,7 +917,7 @@ mod tests { }; use crate::constants::time::*; use keyring::Sr25519Keyring; - use palette_support::{ + use frame_support::{ impl_outer_origin, impl_outer_dispatch, assert_ok, assert_err, parameter_types, }; use crate::parachains; diff --git a/runtime/src/registrar.rs b/runtime/src/registrar.rs index 5432b2267cb4..f5d30e1aa837 100644 --- a/runtime/src/registrar.rs +++ b/runtime/src/registrar.rs @@ -29,7 +29,7 @@ use sr_primitives::{ traits::{Hash as HashT, SignedExtension} }; -use palette_support::{ +use frame_support::{ decl_storage, decl_module, decl_event, ensure, dispatch::{Result, IsSubType}, traits::{Get, Currency, ReservableCurrency} }; @@ -588,7 +588,7 @@ mod tests { }, Balance, BlockNumber, }; - use palette_support::{ + use frame_support::{ impl_outer_origin, impl_outer_dispatch, assert_ok, parameter_types, assert_noop, }; use keyring::Sr25519Keyring; diff --git a/runtime/src/slots.rs b/runtime/src/slots.rs index c0acba465c6b..6bf4d91f901f 100644 --- a/runtime/src/slots.rs +++ b/runtime/src/slots.rs @@ -24,7 +24,7 @@ use sr_primitives::traits::{ }; use sr_primitives::weights::SimpleDispatchInfo; use codec::{Encode, Decode, Codec}; -use palette_support::{ +use frame_support::{ decl_module, decl_storage, decl_event, ensure, traits::{Currency, ReservableCurrency, WithdrawReason, ExistenceRequirement, Get, Randomness}, }; @@ -825,7 +825,7 @@ mod tests { Perbill, testing::Header, traits::{BlakeTwo256, Hash, IdentityLookup, OnInitialize, OnFinalize}, }; - use palette_support::{impl_outer_origin, parameter_types, assert_ok, assert_noop}; + use frame_support::{impl_outer_origin, parameter_types, assert_ok, assert_noop}; use balances; use primitives::parachain::{Id as ParaId, Info as ParaInfo}; From a52c4417313ede7d06ebc6cf5f0633f9e64557ba Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Fri, 22 Nov 2019 18:27:38 +0100 Subject: [PATCH 09/14] bump spec --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index fe694991ccad..a658a2ddd3de 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -95,7 +95,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("kusama"), impl_name: create_runtime_str!("parity-kusama"), authoring_version: 1, - spec_version: 1018, + spec_version: 1019, impl_version: 0, apis: RUNTIME_API_VERSIONS, }; From 1c1df7ce2c17f39acc60bd01fbdaabebdc7fa14d Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Fri, 22 Nov 2019 20:23:12 +0100 Subject: [PATCH 10/14] Subsume #602 and #596 --- runtime/src/claims.rs | 3 ++- runtime/src/crowdfund.rs | 3 ++- runtime/src/impls.rs | 2 +- runtime/src/lib.rs | 14 +++++++++----- runtime/src/parachains.rs | 2 +- runtime/src/registrar.rs | 4 ++-- runtime/src/slots.rs | 2 +- 7 files changed, 18 insertions(+), 12 deletions(-) diff --git a/runtime/src/claims.rs b/runtime/src/claims.rs index c0548bef1980..bbf1e13e1929 100644 --- a/runtime/src/claims.rs +++ b/runtime/src/claims.rs @@ -19,6 +19,7 @@ use rstd::prelude::*; use sr_io::{hashing::keccak_256, crypto::secp256k1_ecdsa_recover}; use frame_support::{decl_event, decl_storage, decl_module}; +use frame_support::weights::SimpleDispatchInfo; use frame_support::traits::{Currency, Get}; use system::{ensure_root, ensure_none}; use codec::{Encode, Decode}; @@ -27,7 +28,7 @@ use serde::{self, Serialize, Deserialize, Serializer, Deserializer}; #[cfg(feature = "std")] use sr_primitives::traits::Zero; use sr_primitives::{ - RuntimeDebug, weights::SimpleDispatchInfo, transaction_validity::{ + RuntimeDebug, transaction_validity::{ TransactionLongevity, TransactionValidity, ValidTransaction, InvalidTransaction }, }; diff --git a/runtime/src/crowdfund.rs b/runtime/src/crowdfund.rs index b634e0c89220..7c1067af504c 100644 --- a/runtime/src/crowdfund.rs +++ b/runtime/src/crowdfund.rs @@ -72,9 +72,10 @@ use frame_support::{ } }; use system::ensure_signed; -use sr_primitives::{ModuleId, weights::SimpleDispatchInfo, +use sr_primitives::{ModuleId, traits::{AccountIdConversion, Hash, Saturating, Zero, CheckedAdd} }; +use frame_support::weights::SimpleDispatchInfo; use crate::slots; use codec::{Encode, Decode}; use rstd::vec::Vec; diff --git a/runtime/src/impls.rs b/runtime/src/impls.rs index ce2528e41c11..362d0c73a17a 100644 --- a/runtime/src/impls.rs +++ b/runtime/src/impls.rs @@ -17,9 +17,9 @@ //! Auxillary struct/enums for polkadot runtime. use primitives::Balance; -use sr_primitives::weights::Weight; use sr_primitives::traits::{Convert, Saturating}; use sr_primitives::{Fixed64, Perbill}; +use frame_support::weights::Weight; use frame_support::traits::{OnUnbalanced, Currency, Get}; use crate::{Balances, System, Authorship, MaximumBlockWeight, NegativeImbalance}; diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index a658a2ddd3de..3d894f107caa 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -37,9 +37,9 @@ use primitives::{ }; use sr_primitives::{ create_runtime_str, generic, impl_opaque_keys, - ApplyResult, Permill, Perbill, RuntimeDebug, + ApplyExtrinsicResult, Permill, Perbill, RuntimeDebug, transaction_validity::{TransactionValidity, InvalidTransaction, TransactionValidityError}, - weights::{Weight, DispatchInfo}, curve::PiecewiseLinear, + curve::PiecewiseLinear, traits::{BlakeTwo256, Block as BlockT, StaticLookup, SignedExtension, OpaqueKeys}, }; use version::RuntimeVersion; @@ -49,7 +49,8 @@ use version::NativeVersion; use substrate_primitives::OpaqueMetadata; use sr_staking_primitives::SessionIndex; use frame_support::{ - parameter_types, construct_runtime, traits::{SplitTwoWays, Currency, Randomness} + parameter_types, construct_runtime, traits::{SplitTwoWays, Currency, Randomness}, + weights::{Weight, DispatchInfo}, }; use im_online::sr25519::AuthorityId as ImOnlineId; use system::offchain::TransactionSubmitter; @@ -94,7 +95,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("kusama"), impl_name: create_runtime_str!("parity-kusama"), - authoring_version: 1, + authoring_version: 2, spec_version: 1019, impl_version: 0, apis: RUNTIME_API_VERSIONS, @@ -120,7 +121,10 @@ impl SignedExtension for OnlyStakingAndClaims { type Call = Call; type AdditionalSigned = (); type Pre = (); + type DispatchInfo = (); + fn additional_signed(&self) -> rstd::result::Result<(), TransactionValidityError> { Ok(()) } + fn validate(&self, _: &Self::AccountId, call: &Self::Call, _: DispatchInfo, _: usize) -> TransactionValidity { @@ -643,7 +647,7 @@ sr_api::impl_runtime_apis! { } impl block_builder_api::BlockBuilder for Runtime { - fn apply_extrinsic(extrinsic: ::Extrinsic) -> ApplyResult { + fn apply_extrinsic(extrinsic: ::Extrinsic) -> ApplyExtrinsicResult { Executive::apply_extrinsic(extrinsic) } diff --git a/runtime/src/parachains.rs b/runtime/src/parachains.rs index 431803202822..12f327653f2d 100644 --- a/runtime/src/parachains.rs +++ b/runtime/src/parachains.rs @@ -25,7 +25,7 @@ use sr_primitives::traits::{ Hash as HashT, BlakeTwo256, Saturating, One, Zero, Dispatchable, AccountIdConversion, }; -use sr_primitives::weights::SimpleDispatchInfo; +use frame_support::weights::SimpleDispatchInfo; use primitives::{ Hash, Balance, parachain::{ diff --git a/runtime/src/registrar.rs b/runtime/src/registrar.rs index f5d30e1aa837..ca099ebd574a 100644 --- a/runtime/src/registrar.rs +++ b/runtime/src/registrar.rs @@ -24,14 +24,14 @@ use rstd::marker::PhantomData; use codec::{Encode, Decode}; use sr_primitives::{ - weights::{SimpleDispatchInfo, DispatchInfo}, transaction_validity::{TransactionValidityError, ValidTransaction, TransactionValidity}, traits::{Hash as HashT, SignedExtension} }; use frame_support::{ decl_storage, decl_module, decl_event, ensure, - dispatch::{Result, IsSubType}, traits::{Get, Currency, ReservableCurrency} + dispatch::{Result, IsSubType}, traits::{Get, Currency, ReservableCurrency}, + weights::{SimpleDispatchInfo, DispatchInfo}, }; use system::{self, ensure_root, ensure_signed}; use primitives::parachain::{ diff --git a/runtime/src/slots.rs b/runtime/src/slots.rs index 6bf4d91f901f..c6792c8f00f1 100644 --- a/runtime/src/slots.rs +++ b/runtime/src/slots.rs @@ -22,7 +22,7 @@ use rstd::{prelude::*, mem::swap, convert::TryInto}; use sr_primitives::traits::{ CheckedSub, StaticLookup, Zero, One, CheckedConversion, Hash, AccountIdConversion, }; -use sr_primitives::weights::SimpleDispatchInfo; +use frame_support::weights::SimpleDispatchInfo; use codec::{Encode, Decode, Codec}; use frame_support::{ decl_module, decl_storage, decl_event, ensure, From f501c0af03ca0cfd9388e51d9d6665379aeb3819 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Fri, 22 Nov 2019 20:37:54 +0100 Subject: [PATCH 11/14] Fix DispatchInfo --- runtime/src/lib.rs | 4 ++-- runtime/src/registrar.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 3d894f107caa..e19483c921ae 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -121,10 +121,10 @@ impl SignedExtension for OnlyStakingAndClaims { type Call = Call; type AdditionalSigned = (); type Pre = (); - type DispatchInfo = (); + type DispatchInfo = DispatchInfo; fn additional_signed(&self) -> rstd::result::Result<(), TransactionValidityError> { Ok(()) } - + fn validate(&self, _: &Self::AccountId, call: &Self::Call, _: DispatchInfo, _: usize) -> TransactionValidity { diff --git a/runtime/src/registrar.rs b/runtime/src/registrar.rs index ca099ebd574a..6b1ba2043ddb 100644 --- a/runtime/src/registrar.rs +++ b/runtime/src/registrar.rs @@ -508,6 +508,7 @@ impl SignedExtension for LimitParathreadCommits where type Call = ::Call; type AdditionalSigned = (); type Pre = (); + type DispatchInfo = DispatchInfo; fn additional_signed(&self) -> rstd::result::Result From fe3a888f74719089d79b31bf6ca9a1d5c32714e9 Mon Sep 17 00:00:00 2001 From: Ashley Date: Fri, 22 Nov 2019 21:54:09 +0100 Subject: [PATCH 12/14] Merge `futures03` and `joe-update-to-palette` (#606) * Change repo and branch * Made changes * Bumped async-std version * Fix line width * Bump spec_version * Fix `run_to_block` for Crowdfund module (#603) Probably a copy paste error. * Bump dependencies * Update trie-db to be inline with substrate --- Cargo.lock | 1260 +++++++++++++------- Cargo.toml | 2 +- availability-store/Cargo.toml | 6 +- cli/Cargo.toml | 4 +- cli/src/lib.rs | 28 +- collator/Cargo.toml | 5 +- collator/src/lib.rs | 213 ++-- network/Cargo.toml | 4 +- runtime/Cargo.toml | 2 +- runtime/src/crowdfund.rs | 2 +- src/main.rs | 8 +- test-parachains/adder/collator/Cargo.toml | 2 +- test-parachains/adder/collator/src/main.rs | 13 +- validation/Cargo.toml | 7 +- validation/src/lib.rs | 37 +- 15 files changed, 986 insertions(+), 607 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b046baaddf2f..101069873785 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,7 +28,7 @@ dependencies = [ "adder 0.6.17", "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-collator 0.6.17", "polkadot-parachain 0.6.17", @@ -76,7 +76,7 @@ dependencies = [ [[package]] name = "ahash" -version = "0.2.17" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -108,7 +108,7 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.19" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -124,7 +124,7 @@ dependencies = [ [[package]] name = "arc-swap" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -162,6 +162,49 @@ dependencies = [ "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "async-macros" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "async-std" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "async-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "async-task 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "broadcaster 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "kv-log-macro 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-project-lite 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "async-task" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "atty" version = "0.2.13" @@ -226,23 +269,22 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.49.2" +version = "0.47.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", + "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -318,6 +360,19 @@ dependencies = [ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "broadcaster" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "bs58" version = "0.2.5" @@ -413,16 +468,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "clang-sys" -version = "0.28.1" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -578,6 +634,14 @@ dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "crossbeam-channel" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "crossbeam-deque" version = "0.7.2" @@ -608,6 +672,14 @@ dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "crossbeam-queue" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "crossbeam-utils" version = "0.6.6" @@ -887,7 +959,7 @@ name = "faerie" version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)", + "anyhow 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "goblin 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -946,13 +1018,12 @@ dependencies = [ [[package]] name = "finality-grandpa" -version = "0.9.1" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -996,9 +1067,135 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-executive" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] +name = "frame-metadata" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] +name = "frame-support" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "frame-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "frame-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.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.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "tracing 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-support-procedural" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "frame-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-support-procedural-tools" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ + "frame-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-support-procedural-tools-derive" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-system" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] +name = "frame-system-rpc" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "frame-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +] + +[[package]] +name = "frame-system-rpc-runtime-api" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] @@ -1098,26 +1295,11 @@ dependencies = [ "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "futures-executor-preview" -version = "0.3.0-alpha.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "futures-io" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "futures-io-preview" -version = "0.3.0-alpha.19" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "futures-macro" version = "0.3.1" @@ -1129,19 +1311,6 @@ dependencies = [ "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "futures-preview" -version = "0.3.0-alpha.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-executor-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "futures-sink" version = "0.3.1" @@ -1167,11 +1336,26 @@ dependencies = [ "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-timer" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-timer" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "futures-util" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1190,22 +1374,19 @@ name = "futures-util-preview" version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "fxhash" -version = "0.2.1" +name = "futures01" +version = "0.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1263,6 +1444,11 @@ dependencies = [ "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "glob" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "glob" version = "0.3.0" @@ -1290,6 +1476,26 @@ dependencies = [ "scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "grafana-data-source" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "async-std 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.13.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "h2" version = "0.1.26" @@ -1307,6 +1513,26 @@ dependencies = [ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "h2" +version = "0.2.0-alpha.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "halt" version = "0.6.17" @@ -1341,7 +1567,7 @@ name = "hashbrown" version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "ahash 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)", + "ahash 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1436,6 +1662,15 @@ dependencies = [ "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "http-body" +version = "0.2.0-alpha.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "httparse" version = "1.3.4" @@ -1478,6 +1713,32 @@ dependencies = [ "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "hyper" +version = "0.13.0-alpha.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "h2 0.2.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http-body 0.2.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-project 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tower-make 0.3.0-alpha.2a (registry+https://github.com/rust-lang/crates.io-index)", + "tower-service 0.3.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)", + "want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "hyper-rustls" version = "0.17.1" @@ -1501,7 +1762,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1511,7 +1772,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1596,10 +1857,10 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1715,45 +1976,55 @@ dependencies = [ "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "kv-log-macro" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "kvdb" -version = "0.1.1" -source = "git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f#06d23cf4c3d84c057a20d3016341672b3063267f" +version = "0.1.0" +source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-bytes 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", ] [[package]] name = "kvdb-memorydb" -version = "0.1.2" -source = "git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f#06d23cf4c3d84c057a20d3016341672b3063267f" +version = "0.1.0" +source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" dependencies = [ - "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "kvdb-rocksdb" -version = "0.1.6" -source = "git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f#06d23cf4c3d84c057a20d3016341672b3063267f" +version = "0.1.4" +source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", - "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rocksdb 0.13.0 (git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys)", + "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "lazy_static" version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "lazycell" @@ -2041,7 +2312,7 @@ dependencies = [ "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2055,9 +2326,9 @@ dependencies = [ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2106,11 +2377,11 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2146,14 +2417,13 @@ dependencies = [ [[package]] name = "librocksdb-sys" -version = "6.2.4" -source = "git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys#b54d3fff6bb7d186a5b34322931db65cee4527ef" +version = "5.18.3" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bindgen 0.49.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "zstd-sys 1.4.15+zstd.1.4.4 (git+https://github.com/bkchr/zstd-rs.git?branch=bkchr-export-include-paths2)", ] [[package]] @@ -2467,7 +2737,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2476,7 +2746,7 @@ version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2487,7 +2757,7 @@ dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2495,12 +2765,12 @@ name = "num-traits" version = "0.1.43" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "num-traits" -version = "0.2.9" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2528,156 +2798,37 @@ dependencies = [ name = "once_cell" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "once_cell" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "opaque-debug" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "owning_ref" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "frame-executive" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" -dependencies = [ - "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", -] - -[[package]] -name = "frame-metadata" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" -dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", -] - -[[package]] -name = "frame-support" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" -dependencies = [ - "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "frame-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "parity-scale-codec 1.1.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.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", -] - -[[package]] -name = "frame-support-procedural" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" -dependencies = [ - "frame-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "frame-support-procedural-tools" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" -dependencies = [ - "frame-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "frame-support-procedural-tools-derive" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" -dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "frame-system" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" -dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", -] - -[[package]] -name = "frame-system-rpc" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" -dependencies = [ - "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", +dependencies = [ + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "frame-system-rpc-runtime-api" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +name = "once_cell" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "once_cell" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "opaque-debug" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "owning_ref" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "pallet-authority-discovery" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2695,11 +2846,11 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2712,11 +2863,11 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ - "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "pallet-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2733,7 +2884,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2742,13 +2893,12 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", ] [[package]] name = "pallet-collective" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2764,7 +2914,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2779,7 +2929,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2792,11 +2942,11 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sp-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2808,7 +2958,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2826,7 +2976,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2845,7 +2995,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2862,7 +3012,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2876,7 +3026,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2890,7 +3040,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2905,7 +3055,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2918,11 +3068,11 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "pallet-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2937,7 +3087,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2957,7 +3107,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2968,7 +3118,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2982,11 +3132,11 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sp-timestamp 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -2998,7 +3148,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3011,7 +3161,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3028,8 +3178,9 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ + "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3040,7 +3191,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3053,8 +3204,8 @@ dependencies = [ [[package]] name = "parity-bytes" -version = "0.1.1" -source = "git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f#06d23cf4c3d84c057a20d3016341672b3063267f" +version = "0.1.0" +source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" [[package]] name = "parity-multiaddr" @@ -3174,6 +3325,15 @@ name = "parity-wasm" version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "parking_lot" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "parking_lot" version = "0.7.1" @@ -3203,6 +3363,18 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "parking_lot_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "parking_lot_core" version = "0.4.0" @@ -3301,6 +3473,29 @@ dependencies = [ "fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "pin-project" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "pin-project-internal 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pin-project-internal" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pin-project-lite" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "pin-utils" version = "0.1.0-alpha.4" @@ -3321,7 +3516,7 @@ name = "polkadot" version = "0.6.17" dependencies = [ "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-cli 0.6.17", "polkadot-service 0.6.17", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3331,9 +3526,9 @@ dependencies = [ name = "polkadot-availability-store" version = "0.6.17" dependencies = [ - "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", - "kvdb-memorydb 0.1.2 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", - "kvdb-rocksdb 0.1.6 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3345,11 +3540,11 @@ dependencies = [ name = "polkadot-cli" version = "0.6.17" dependencies = [ - "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-service 0.6.17", - "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3359,7 +3554,8 @@ name = "polkadot-collator" version = "0.6.17" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "polkadot-cli 0.6.17", "polkadot-network 0.6.17", @@ -3402,7 +3598,7 @@ dependencies = [ "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3459,8 +3655,8 @@ dependencies = [ name = "polkadot-rpc" version = "0.6.17" dependencies = [ - "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "frame-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "polkadot-primitives 0.6.17", "polkadot-runtime 0.6.17", @@ -3475,13 +3671,13 @@ name = "polkadot-runtime" version = "0.6.17" dependencies = [ "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "frame-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "frame-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -3532,7 +3728,7 @@ dependencies = [ "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-db 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3591,12 +3787,13 @@ dependencies = [ name = "polkadot-validation" version = "0.6.17" dependencies = [ + "async-std 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (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 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3792,6 +3989,18 @@ dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "rand" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rand" version = "0.6.5" @@ -3937,22 +4146,22 @@ dependencies = [ [[package]] name = "rayon" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rayon-core" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4034,17 +4243,17 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rocksdb" -version = "0.13.0" -source = "git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys#b54d3fff6bb7d186a5b34322931db65cee4527ef" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "librocksdb-sys 6.2.4 (git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys)", + "librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4286,11 +4495,6 @@ dependencies = [ "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "shlex" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "slab" version = "0.4.2" @@ -4332,7 +4536,7 @@ name = "slog-scope" version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arc-swap 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4399,7 +4603,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sp-authorship" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4409,7 +4613,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4419,7 +4623,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4437,7 +4641,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-proc-macro 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4451,7 +4655,7 @@ dependencies = [ [[package]] name = "sr-api-proc-macro" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" 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)", @@ -4463,10 +4667,10 @@ dependencies = [ [[package]] name = "sr-arithmetic" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4476,7 +4680,7 @@ dependencies = [ [[package]] name = "sr-io" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4493,7 +4697,7 @@ dependencies = [ [[package]] name = "sr-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4512,7 +4716,7 @@ dependencies = [ [[package]] name = "sr-staking-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4522,12 +4726,12 @@ dependencies = [ [[package]] name = "sr-std" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" [[package]] name = "sr-version" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4577,16 +4781,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "structopt" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "structopt-derive" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4615,7 +4819,7 @@ dependencies = [ [[package]] name = "substrate-application-crypto" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4627,12 +4831,12 @@ dependencies = [ [[package]] name = "substrate-authority-discovery" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4650,7 +4854,7 @@ dependencies = [ [[package]] name = "substrate-authority-discovery-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4673,7 +4877,7 @@ dependencies = [ [[package]] name = "substrate-block-builder" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4686,8 +4890,9 @@ dependencies = [ [[package]] name = "substrate-block-builder-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4697,7 +4902,7 @@ dependencies = [ [[package]] name = "substrate-chain-spec" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4712,7 +4917,7 @@ dependencies = [ [[package]] name = "substrate-chain-spec-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4723,7 +4928,7 @@ dependencies = [ [[package]] name = "substrate-cli" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" 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)", @@ -4731,10 +4936,9 @@ dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures01 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4742,7 +4946,7 @@ dependencies = [ "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4752,6 +4956,7 @@ dependencies = [ "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-tracing 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4759,15 +4964,14 @@ dependencies = [ [[package]] name = "substrate-client" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4779,6 +4983,7 @@ dependencies = [ "substrate-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4791,15 +4996,14 @@ dependencies = [ [[package]] name = "substrate-client-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4810,6 +5014,7 @@ dependencies = [ "substrate-block-builder 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4822,12 +5027,12 @@ dependencies = [ [[package]] name = "substrate-client-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", - "kvdb-memorydb 0.1.2 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", - "kvdb-rocksdb 0.1.6 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4847,18 +5052,18 @@ dependencies = [ [[package]] name = "substrate-consensus-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4887,7 +5092,7 @@ dependencies = [ [[package]] name = "substrate-consensus-babe-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4903,10 +5108,10 @@ dependencies = [ [[package]] name = "substrate-consensus-common" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4922,10 +5127,10 @@ dependencies = [ [[package]] name = "substrate-consensus-slots" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (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)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4940,7 +5145,7 @@ dependencies = [ [[package]] name = "substrate-consensus-uncles" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "sp-authorship 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -4954,7 +5159,7 @@ dependencies = [ [[package]] name = "substrate-debug-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4964,7 +5169,7 @@ dependencies = [ [[package]] name = "substrate-executor" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4996,7 +5201,7 @@ dependencies = [ [[package]] name = "substrate-externalities" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5007,12 +5212,12 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ - "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "finality-grandpa 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5037,7 +5242,7 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5050,7 +5255,7 @@ dependencies = [ [[package]] name = "substrate-header-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "lru 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5060,7 +5265,7 @@ dependencies = [ [[package]] name = "substrate-inherents" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5072,7 +5277,7 @@ dependencies = [ [[package]] name = "substrate-keyring" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5084,7 +5289,7 @@ dependencies = [ [[package]] name = "substrate-keystore" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5099,7 +5304,7 @@ dependencies = [ [[package]] name = "substrate-network" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5109,7 +5314,7 @@ dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5144,13 +5349,13 @@ dependencies = [ [[package]] name = "substrate-offchain" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5165,14 +5370,13 @@ dependencies = [ "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5181,7 +5385,7 @@ dependencies = [ [[package]] name = "substrate-panic-handler" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5190,9 +5394,9 @@ dependencies = [ [[package]] name = "substrate-peerset" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5201,7 +5405,7 @@ dependencies = [ [[package]] name = "substrate-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5211,7 +5415,7 @@ dependencies = [ [[package]] name = "substrate-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" 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)", @@ -5224,7 +5428,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5250,7 +5454,7 @@ dependencies = [ [[package]] name = "substrate-primitives-storage" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5261,9 +5465,9 @@ dependencies = [ [[package]] name = "substrate-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5289,10 +5493,10 @@ dependencies = [ [[package]] name = "substrate-rpc-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5311,7 +5515,7 @@ dependencies = [ [[package]] name = "substrate-rpc-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5320,7 +5524,7 @@ dependencies = [ [[package]] name = "substrate-rpc-servers" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5335,7 +5539,7 @@ dependencies = [ [[package]] name = "substrate-runtime-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5350,7 +5554,7 @@ dependencies = [ [[package]] name = "substrate-runtime-interface-proc-macro" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" 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)", @@ -5362,7 +5566,7 @@ dependencies = [ [[package]] name = "substrate-serializer" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5371,12 +5575,13 @@ dependencies = [ [[package]] name = "substrate-service" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "grafana-data-source 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5403,18 +5608,20 @@ dependencies = [ "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "substrate-tracing 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5424,7 +5631,7 @@ dependencies = [ [[package]] name = "substrate-state-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5435,11 +5642,11 @@ dependencies = [ [[package]] name = "substrate-state-machine" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5447,19 +5654,19 @@ dependencies = [ "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-db 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-telemetry" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5473,13 +5680,24 @@ dependencies = [ "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-tracing" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" +dependencies = [ + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", + "tracing-core 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-transaction-graph" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5490,7 +5708,7 @@ dependencies = [ [[package]] name = "substrate-transaction-pool" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5507,7 +5725,7 @@ dependencies = [ [[package]] name = "substrate-transaction-pool-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "sr-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", @@ -5517,14 +5735,14 @@ dependencies = [ [[package]] name = "substrate-trie" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)", - "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-db 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5536,7 +5754,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "substrate-wasm-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#37e7004f6df125f33b8036d93f9c227202f25d43" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-master#1f26179aead7c5aee95862b2f2e7d9cbbdcdb798" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5591,7 +5809,7 @@ dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5766,6 +5984,18 @@ dependencies = [ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "tokio-codec" +version = "0.2.0-alpha.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "tokio-current-thread" version = "0.1.6" @@ -5795,6 +6025,14 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "tokio-executor" +version = "0.2.0-alpha.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "tokio-fs" version = "0.1.6" @@ -5815,6 +6053,18 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "tokio-io" +version = "0.2.0-alpha.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-project 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "tokio-reactor" version = "0.1.10" @@ -5855,6 +6105,16 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "tokio-sync" +version = "0.2.0-alpha.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "tokio-tcp" version = "0.1.3" @@ -5934,9 +6194,52 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "tower-make" +version = "0.3.0-alpha.2a" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "tokio-io 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tower-service 0.3.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tower-service" +version = "0.3.0-alpha.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "tracing" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing-attributes 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing-core 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tracing-core" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "trie-db" -version = "0.15.2" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6011,10 +6314,10 @@ dependencies = [ [[package]] name = "unicode-normalization" -version = "0.1.9" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -6116,6 +6419,15 @@ dependencies = [ "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "want" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "wasi" version = "0.7.0" @@ -6123,16 +6435,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-bindgen" -version = "0.2.54" +version = "0.2.55" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.54" +version = "0.2.55" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6141,7 +6453,7 @@ dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -6151,49 +6463,49 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.54" +version = "0.2.55" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro-support 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro-support 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.54" +version = "0.2.55" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.54" +version = "0.2.55" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-bindgen-webidl" -version = "0.2.54" +version = "0.2.55" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)", + "anyhow 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -6203,11 +6515,11 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)", "send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -6228,7 +6540,7 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.41.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi-validation 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -6259,7 +6571,7 @@ name = "wasmtime-debug" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)", + "anyhow 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "cranelift-wasm 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6290,7 +6602,7 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6306,7 +6618,7 @@ name = "wasmtime-jit" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)", + "anyhow 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", "cranelift-frontend 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6344,14 +6656,14 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "anyhow 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)", "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-webidl 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-webidl 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -6543,18 +6855,21 @@ dependencies = [ "checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" "checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" "checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" -"checksum ahash 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "2f00e10d4814aa20900e7948174384f79f1317f24f0ba7494e735111653fc330" +"checksum ahash 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3" "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" -"checksum anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)" = "57114fc2a6cc374bce195d3482057c846e706d252ff3604363449695684d7a0d" +"checksum anyhow 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)" = "e19f23ab207147bbdbcdfa7f7e4ca5e84963d79bae3937074682177ab9150968" "checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" -"checksum arc-swap 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f1a1eca3195b729bbd64e292ef2f5fff6b1c28504fed762ce2b1013dde4d8e92" +"checksum arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d7b8a9123b8027467bce0099fe556c628a53c8d83df0507084c31e9ba2e39aff" "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" "checksum arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" "checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" "checksum asn1_der 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638" "checksum asn1_der_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502" +"checksum async-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "644a5a8de80f2085a1e7e57cd1544a2a7438f6e003c0790999bd43b92a77cdb2" +"checksum async-std 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "56933da6903b273923d13f4746d829f66ff9b444173f6743d831e80f4da15446" +"checksum async-task 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "de6bd58f7b9cc49032559422595c81cbfcf04db2f2133592f70af19e258a1ced" "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" "checksum backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)" = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea" @@ -6563,7 +6878,7 @@ dependencies = [ "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" "checksum base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" "checksum bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b8ab639324e3ee8774d296864fbc0dbbb256cf1a41c490b94cba90c082915f92" -"checksum bindgen 0.49.2 (registry+https://github.com/rust-lang/crates.io-index)" = "846a1fba6535362a01487ef6b10f0275faa12e5c5d835c5c1c627aabc46ccbd6" +"checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" "checksum bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead" "checksum bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a993f74b4c99c1908d156b8d2e0fb6277736b0ecbd833982fd1241d39b2766a6" @@ -6573,6 +6888,7 @@ dependencies = [ "checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" "checksum block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" "checksum block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" +"checksum broadcaster 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "07a1446420a56f1030271649ba0da46d23239b3a68c73591cea5247f15a788a0" "checksum bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c95ee6bba9d950218b6cc910cf62bc9e0a171d0f4537e3627b0f54d08549b188" "checksum bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b170cd256a3f9fa6b9edae3e44a7dfdfc77e8124dbc3e2612d75f9c3e2396dae" "checksum bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8d6c2c5b58ab920a4f5aeaaca34b4488074e8cc7596af94e6f8c6ff247c60245" @@ -6588,7 +6904,7 @@ dependencies = [ "checksum cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" -"checksum clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853" +"checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" "checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" @@ -6605,9 +6921,11 @@ dependencies = [ "checksum cranelift-wasm 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)" = "54cb82a1071f88822763a583ec1a8688ffe5e2cda02c111d4483dd4376ed14d8" "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" "checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" +"checksum crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "acec9a3b0b3559f15aee4f90746c4e5e293b701c0f7d3925d24e01645267b68c" "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" "checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" "checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b" +"checksum crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dfd6515864a82d2f877b42813d4553292c6659498c9a2aa31bab5a15243c2700" "checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" "checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" "checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" @@ -6646,12 +6964,21 @@ dependencies = [ "checksum fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" "checksum fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ee15a7050e5580b3712877157068ea713b245b080ff302ae2ca973cfcd9baa" "checksum file-per-thread-logger 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8505b75b31ef7285168dd237c4a7db3c1f3e0927e7d314e670bc98e854272fe9" -"checksum finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34754852da8d86bc509715292c73140a5b678656d0b16132acd6737bdb5fd5f8" +"checksum finality-grandpa 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b36ece7dc398ce17438d815f3202d2cdba8fd930452a68b616965662742b7e10" "checksum fixed-hash 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "72fe7539e2c5692c6989f2f9c0457e42f1e5768f96b85c87d273574670ae459f" "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" "checksum flate2 1.0.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 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum frame-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" @@ -6664,28 +6991,30 @@ dependencies = [ "checksum futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" "checksum futures-executor 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1e274736563f686a837a0568b478bdabfeaec2dca794b5649b04e2fe1627c231" -"checksum futures-executor-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "75236e88bd9fe88e5e8bfcd175b665d0528fe03ca4c5207fabc028c8f9d93e98" "checksum futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e676577d229e70952ab25f3945795ba5b16d63ca794ca9d2c860e5595d20b5ff" -"checksum futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "f4914ae450db1921a56c91bde97a27846287d062087d4a652efc09bb3a01ebda" "checksum futures-macro 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "52e7c56c15537adb4f76d0b7a76ad131cb4d2f4f32d3b0bcabcbe1c7c5e87764" -"checksum futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "3b1dce2a0267ada5c6ff75a8ba864b4e679a9e2aa44262af7a3b5516d530d76e" "checksum futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "171be33efae63c2d59e6dbba34186fe0d6394fb378069a76dfd80fdcffd43c16" "checksum futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "86f148ef6b69f75bb610d4f9a2336d4fc88c4b5b67129d1a340dd0fd362efeec" "checksum futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0bae52d6b29cf440e298856fec3965ee6fa71b06aa7495178615953fd669e5f9" "checksum futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "878f1d2fc31355fa02ed2372e741b0c17e58373341e6a122569b4623a14a7d33" +"checksum futures-timer 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7946248e9429ff093345d3e8fdf4eb0f9b2d79091611c9c14f744971a6f8be45" +"checksum futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a1de7508b218029b0f01662ed8f61b1c964b3ae99d6f25462d0f55a595109df6" "checksum futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c0d66274fb76985d3c62c886d1da7ac4c0903a8c9f754e8fe0f35a6a6cc39e76" "checksum futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "5ce968633c17e5f97936bd2797b6e38fb56cf16a7422319f7ec2e30d3c470e8d" -"checksum fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +"checksum futures01 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)" = "7ef8cbbf52909170053540c6c05a62433ddb60662dabee714e2a882caa864f22" "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" "checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" "checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" "checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407" "checksum gimli 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)" = "162d18ae5f2e3b90a993d202f1ba17a5633c2484426f8bcae201f86194bacd00" +"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" "checksum goblin 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5e6040506480da04a63de51a478e8021892d65d8411f29b2a422c2648bdd8bcb" +"checksum grafana-data-source 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" +"checksum h2 0.2.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0f107db1419ef8271686187b1a5d47c6431af4a7f4d98b495e7b7fc249bb0a78" "checksum hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" "checksum hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" @@ -6701,9 +7030,11 @@ dependencies = [ "checksum hmac-drbg 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c6e570451493f10f6581b48cdd530413b63ea9e780f544bfd3bdcaa0d89d1a7b" "checksum http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e06e336150b178206af098a055e3621e8336027e2b4d126bda0bc64824baaf" "checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" +"checksum http-body 0.2.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1f3aef6f3de2bd8585f5b366f3f550b5774500b4764d00cf00f903c95749eec3" "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" "checksum hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)" = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6" +"checksum hyper 0.13.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "2d05aa523087ac0b9d8b93dd80d5d482a697308ed3b0dca7b0667511a7fa7cdc" "checksum hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)" = "719d85c7df4a7f309a77d145340a063ea929dcb2e025bae46a80345cffec2952" "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" "checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" @@ -6718,7 +7049,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" +"checksum js-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)" = "1c840fdb2167497b0bd0db43d6dfe61e91637fa72f9d061f8bd17ddc44ba6414" "checksum jsonrpc-client-transports 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d389a085cb2184604dff060390cadb8cba1f063c7fd0ad710272c163c88b9f20" "checksum jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "34651edf3417637cc45e70ed0182ecfa9ced0b7e8131805fccf7400d989845ca" "checksum jsonrpc-core-client 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9dbaec1d57271ff952f24ca79d37d716cfd749c855b058d9aa5f053a6b8ae4ef" @@ -6729,9 +7060,10 @@ dependencies = [ "checksum jsonrpc-ws-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af36a129cef77a9db8028ac7552d927e1bb7b6928cd96b23dd25cc38bff974ab" "checksum keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -"checksum kvdb 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)" = "" -"checksum kvdb-memorydb 0.1.2 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)" = "" -"checksum kvdb-rocksdb 0.1.6 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)" = "" +"checksum kv-log-macro 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c54d9f465d530a752e6ebdc217e081a7a614b48cb200f6f0aee21ba6bc9aabb" +"checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" +"checksum kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" +"checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" "checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" @@ -6756,7 +7088,7 @@ dependencies = [ "checksum libp2p-wasm-ext 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f7b8f2bd81fb356e81352d4513856bc21215ecf91502aa1f55b6449642a9acf" "checksum libp2p-websocket 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d74d4fc229ad7e8d1a973178786bdcd5dadbdd7b9822c4477c8687df6f82f66" "checksum libp2p-yamux 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1913eb7dd6eb5515957b6f1770296f6921968db87bc9b985f0e974b6657e1003" -"checksum librocksdb-sys 6.2.4 (git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys)" = "" +"checksum librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d19778314deaa7048f2ea7d07b8aa12e1c227acebe975a37eeab6d2f8c74e41b" "checksum libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd9a7c16c9487e710536b699c962f022266347c94201174aa0a7eb0546051aa" "checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe" "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" @@ -6796,22 +7128,14 @@ dependencies = [ "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" "checksum num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2885278d5fe2adc2f75ced642d52d879bffaceb5a2e0b1d4309ffdfb239b454" "checksum num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31" -"checksum num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "443c53b3c3531dfcbfa499d8893944db78474ad7a1d87fa2d94d1a2231693ac6" +"checksum num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d4c81ffc11c212fa327657cb19dd85eb7419e163b5b076bede2bdb5c974c07e4" "checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72" "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" "checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" +"checksum once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "891f486f630e5c5a4916c7e16c4b24a53e78c860b646e9f8e005e4f16847bfed" "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" -"checksum frame-executive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-metadata 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-support 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-system 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-system-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum frame-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-authorship 0.1.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-babe 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" @@ -6836,7 +7160,7 @@ dependencies = [ "checksum pallet-transaction-payment-rpc 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum pallet-treasury 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" -"checksum parity-bytes 0.1.1 (git+https://github.com/paritytech/parity-common?rev=06d23cf4c3d84c057a20d3016341672b3063267f)" = "" +"checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" "checksum parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82afcb7461eae5d122543d8be1c57d306ed89af2d6ff7f8b0f5a3cc8f7e511bc" "checksum parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3" @@ -6848,9 +7172,11 @@ dependencies = [ "checksum parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)" = "511379a8194230c2395d2f5fa627a5a7e108a9f976656ce723ae68fca4097bfc" "checksum parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1e39faaa292a687ea15120b1ac31899b13586446521df6c149e46f1584671e0f" "checksum parity-wasm 0.41.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc878dac00da22f8f61e7af3157988424567ab01d9920b962ef7dcbd7cd865" +"checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" "checksum parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa7767817701cce701d5585b9c4db3cdd02086398322c1d7e8bf5094a96a2ce7" "checksum parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" +"checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" "checksum parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb88cb1cb3790baa6776844f968fea3be44956cf184fa1be5a03341f5491278c" "checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" @@ -6862,6 +7188,9 @@ dependencies = [ "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" "checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f" +"checksum pin-project 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "94b90146c7216e4cb534069fb91366de4ea0ea353105ee45ed297e2d1619e469" +"checksum pin-project-internal 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "44ca92f893f0656d3cba8158dd0f2b99b94de256a4a54e870bd6922fcc6c8355" +"checksum pin-project-lite 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f0af6cbca0e6e3ce8692ee19fb8d734b641899e07b68eb73e9bbbd32f1703991" "checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" "checksum pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" "checksum plain 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" @@ -6884,6 +7213,7 @@ dependencies = [ "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" +"checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" "checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" @@ -6899,8 +7229,8 @@ dependencies = [ "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" "checksum raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4a349ca83373cfa5d6dbb66fd76e58b2cca08da71a5f6400de0a0a6a9bceeaf" -"checksum rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "83a27732a533a1be0a0035a111fe76db89ad312f6f0347004c220c57f209a123" -"checksum rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "98dcf634205083b17d0861252431eb2acbfb698ab7478a2d20de07954f47ec7b" +"checksum rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "43739f8831493b276363637423d3622d4bd6394ab6f0a9c4a552e208aeb7fddd" +"checksum rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8bf17de6f23b05473c437eb958b9c850bfc8af0961fe17b4cc92d5a627b4791" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" "checksum redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ecedbca3bf205f8d8f5c2b44d83cd0690e39ee84b951ed649e9f1841132b66d" @@ -6910,7 +7240,7 @@ dependencies = [ "checksum region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "448e868c6e4cfddfa49b6a72c95906c04e8547465e9536575b95c70a4044f856" "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" "checksum ring 0.16.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6747f8da1f2b1fabbee1aaa4eb8a11abf9adef0bf58a41cee45db5d59cecdfac" -"checksum rocksdb 0.13.0 (git+https://github.com/bkchr/rust-rocksdb.git?branch=bkchr-use-zstd-sys)" = "" +"checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" "checksum rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f072d931f11a96546efd97642e1e75e807345aced86b947f9239102f262d0fcd" "checksum rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ca4eaef519b494d1f2848fc602d18816fed808a981aedf4f1f00ceb7c9d32cf" "checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" @@ -6939,7 +7269,6 @@ dependencies = [ "checksum sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf" "checksum shared_memory 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "be289420c5900abb177b756f39625ca7a0df68069cfb242fb31feb6e8c480f04" "checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" -"checksum shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2" "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" "checksum slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99" "checksum slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)" = "" @@ -6969,8 +7298,8 @@ dependencies = [ "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" "checksum string-interner 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd710eadff449a1531351b0e43eb81ea404336fa2f56c777427ab0e32a4cf183" "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" -"checksum structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c167b61c7d4c126927f5346a4327ce20abf8a186b8041bbeb1ce49e5db49587b" -"checksum structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "519621841414165d2ad0d4c92be8f41844203f2b67e245f9345a5a12d40c69d7" +"checksum structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "30b3a3e93f5ad553c38b3301c8a0a0cec829a36783f6a0c467fc4bf553a5f5bf" +"checksum structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea692d40005b3ceba90a9fe7a78fa8d4b82b0ce627eebbffc329aab850f3410e" "checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" "checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" "checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" @@ -7019,6 +7348,7 @@ dependencies = [ "checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" +"checksum substrate-tracing 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" "checksum substrate-transaction-pool-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)" = "" @@ -7049,21 +7379,30 @@ dependencies = [ "checksum tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" "checksum tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" "checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" +"checksum tokio-codec 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9f5d22fd1e84bd4045d28813491cb7d7caae34d45c80517c2213f09a85e8787a" "checksum tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443" "checksum tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82c65483db54eb91b4ef3a9389a3364558590faf30ce473141707c0e16fda975" "checksum tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f27ee0e6db01c5f0b2973824547ce7e637b2ed79b891a9677b0de9bd532b6ac" +"checksum tokio-executor 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee9ceecf69145923834ea73f32ba40c790fd877b74a7817dd0b089f1eb9c7c8" "checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af" "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" +"checksum tokio-io 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)" = "112784d5543df30660b04a72ca423bfbd90e8bb32f94dcf610f15401218b22c5" "checksum tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "c56391be9805bc80163151c0b9e5164ee64f4b0200962c346fea12773158f22d" "checksum tokio-rustls 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1df2fa53ac211c136832f530ccb081af9af891af22d685a9493e232c7a359bc2" "checksum tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d06554cce1ae4a50f42fba8023918afa931413aded705b560e29600ccf7c6d76" +"checksum tokio-sync 0.2.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4f1aaeb685540f7407ea0e27f1c9757d258c7c6bf4e3eb19da6fc59b747239d2" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" "checksum tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd2c6a3885302581f4401c82af70d792bb9df1700e7437b0aeb4ada94d5388c" "checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" "checksum tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f02298505547f73e60f568359ef0d016d5acd6e830ab9bc7c4a5b3403440121b" "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" "checksum toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf" -"checksum trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d0b62d27e8aa1c07414549ac872480ac82380bab39e730242ab08d82d7cc098a" +"checksum tower-make 0.3.0-alpha.2a (registry+https://github.com/rust-lang/crates.io-index)" = "316d47dd40cde4ac5d88110eaf9a10a4e2a68612d9c056cd2aa24e37dcb484cd" +"checksum tower-service 0.3.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)" = "63ff37396cd966ce43bea418bfa339f802857495f797dafa00bea5b7221ebdfa" +"checksum tracing 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ff4e4f59e752cb3beb5b61c6d5e11191c7946231ba84faec2902c9efdd8691c5" +"checksum tracing-attributes 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a4263b12c3d3c403274493eb805966093b53214124796552d674ca1dd5d27c2b" +"checksum tracing-core 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "bc913647c520c959b6d21e35ed8fa6984971deca9f0a2fcb8c51207e0c56af1d" +"checksum trie-db 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "784a9813d23f18bccab728ab039c39b8a87d0d6956dcdece39e92f5cffe5076e" "checksum trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0b779f7c1c8fe9276365d9d5be5c4b5adeacf545117bb3f64c974305789c5c0b" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" "checksum twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1" @@ -7072,7 +7411,7 @@ dependencies = [ "checksum uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e75a4cdd7b87b28840dba13c483b9a88ee6bbf16ba5c951ee1ecfcf723078e0d" "checksum unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" -"checksum unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "09c8070a9942f5e7cfccd93f490fdebd230ee3c3c9f107cb25bad5351ef671cf" +"checksum unicode-normalization 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b561e267b2326bb4cebfc0ef9e68355c7abe6c6f522aeac2f5bf95d56c59bdcf" "checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" "checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" @@ -7088,14 +7427,15 @@ dependencies = [ "checksum version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce" "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" +"checksum want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" "checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" -"checksum wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "c4568ae1b4e07ca907b1a4de41174eaa3e5be4066c024475586b7842725f69a9" -"checksum wasm-bindgen-backend 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "5a00cfdce37367770062065fd3abb9278cbae86a0d918cacd0978a7acd51b481" +"checksum wasm-bindgen 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)" = "29ae32af33bacd663a9a28241abecf01f2be64e6a185c6139b04f18b6385c5f2" +"checksum wasm-bindgen-backend 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)" = "1845584bd3593442dc0de6e6d9f84454a59a057722f36f005e44665d6ab19d85" "checksum wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "83420b37346c311b9ed822af41ec2e82839bfe99867ec6c54e2da43b7538771c" -"checksum wasm-bindgen-macro 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "7c568f4d3cf6d7c1d72b165daf778fb0d6e09a24f96ac14fc8c4f66a96e86b72" -"checksum wasm-bindgen-macro-support 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "430d12539ae324d16097b399e9d07a6d5ce0173b2a61a2d02346ca7c198daffe" -"checksum wasm-bindgen-shared 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "8ae7167f0bbffd7fac2b12da0fa1f834c1d84671a1ae3c93ac8bde2e97179c39" -"checksum wasm-bindgen-webidl 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "3021567c515a746a64ad0b269d120d46e687c0c95702a4750623db935ae6b5e7" +"checksum wasm-bindgen-macro 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)" = "87fcc747e6b73c93d22c947a6334644d22cfec5abd8b66238484dc2b0aeb9fe4" +"checksum wasm-bindgen-macro-support 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)" = "3dc4b3f2c4078c8c4a5f363b92fcf62604c5913cbd16c6ff5aaf0f74ec03f570" +"checksum wasm-bindgen-shared 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)" = "ca0b78d6d3be8589b95d1d49cdc0794728ca734adf36d7c9f07e6459508bb53d" +"checksum wasm-bindgen-webidl 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)" = "3126356474ceb717c8fb5549ae387c9fbf4872818454f4d87708bee997214bb5" "checksum wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "aa3e01d234bb71760e685cfafa5e2c96f8ad877c161a721646356651069e26ac" "checksum wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "aebbaef470840d157a5c47c8c49f024da7b1b80e90ff729ca982b2b80447e78b" "checksum wasmi 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bf617d864d25af3587aa745529f7aaa541066c876d57e050c0d0c85c61c92aff" @@ -7106,7 +7446,7 @@ dependencies = [ "checksum wasmtime-environ 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a3947662a0b8e05b1418465e64f16de9114f9fec18cc3f56e0ed5aa7737b89d0" "checksum wasmtime-jit 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6ed7922689461a7b5bd0d9c7350cac526c8a520a23b3ffd7f5b446ac51dfc51f" "checksum wasmtime-runtime 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "781d6bb8b346efaa3dc39746386957cd79b8d841e8652ed9b02d77bcf64fb514" -"checksum web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "ce8e893e021539beb87de8f06e77bdb390a3ab0db4cfeb569c4e377b55ed20de" +"checksum web-sys 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)" = "98405c0a2e722ed3db341b4c5b70eb9fe0021621f7350bab76df93b09b649bbf" "checksum webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e664e770ac0110e2384769bcc59ed19e329d81f555916a6e072714957b81b4" "checksum webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a262ae37dd9d60f60dd473d1158f9fbebf110ba7b6a5051c8160460f6043718b" "checksum webpki-roots 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91cd5736df7f12a964a5067a12c62fa38e1bd8080aff1f80bc29be7c80d19ab4" diff --git a/Cargo.toml b/Cargo.toml index 23a64735735e..4389d0ab95db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] cli = { package = "polkadot-cli", path = "cli" } -futures = "0.1.29" +futures = "0.3.1" ctrlc = { version = "3.1.3", features = ["termination"] } service = { package = "polkadot-service", path = "service" } diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index 01245778cc7d..0052b8f819bd 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -11,6 +11,6 @@ parking_lot = "0.9.0" log = "0.4.8" codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] } substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -kvdb = { git = "https://github.com/paritytech/parity-common", rev="06d23cf4c3d84c057a20d3016341672b3063267f" } -kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="06d23cf4c3d84c057a20d3016341672b3063267f" } -kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="06d23cf4c3d84c057a20d3016341672b3063267f" } +kvdb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } +kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } +kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 2e56725e6d40..b51f4593e31a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -8,8 +8,8 @@ edition = "2018" [dependencies] log = "0.4.8" tokio = "0.1.22" -futures = "0.1.29" -exit-future = "0.1.4" +futures = { version = "0.3.1", features = ["compat"] } +futures01 = { package = "futures", version = "0.1.29" } structopt = "0.3.4" cli = { package = "substrate-cli", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } service = { package = "polkadot-service", path = "../service" } diff --git a/cli/src/lib.rs b/cli/src/lib.rs index aa3cab1b84dc..eb5a23fe5e7d 100644 --- a/cli/src/lib.rs +++ b/cli/src/lib.rs @@ -22,7 +22,7 @@ mod chain_spec; use chain_spec::ChainSpec; -use futures::Future; +use futures::{Future, FutureExt, TryFutureExt, future::select, channel::oneshot, compat::Future01CompatExt}; use tokio::runtime::Runtime; use std::sync::Arc; use log::{info, error}; @@ -37,7 +37,8 @@ pub use cli::{VersionInfo, IntoExit, NoCustom}; pub use cli::{display_role, error}; /// Abstraction over an executor that lets you spawn tasks in the background. -pub type TaskExecutor = Arc + Send>> + Send + Sync>; +type BoxedFuture = Box + Send>; +pub type TaskExecutor = Arc + Send + Sync>; fn load_spec(id: &str) -> Result, String> { Ok(match ChainSpec::from(id) { @@ -53,7 +54,7 @@ fn load_spec(id: &str) -> Result, String> { pub trait Worker: IntoExit { /// A future that resolves when the work is done or the node should exit. /// This will be run on a tokio runtime. - type Work: Future + Send + 'static; + type Work: Future + Unpin + Send + 'static; /// Return configuration for the polkadot node. // TODO: make this the full configuration, so embedded nodes don't need @@ -143,20 +144,31 @@ fn run_until_exit( CE: service::CallExecutor + Clone + Send + Sync + 'static, W: Worker, { - let (exit_send, exit) = exit_future::signal(); + let (exit_send, exit) = oneshot::channel(); let executor = runtime.executor(); let informant = cli::informant::build(&service); - executor.spawn(exit.until(informant).map(|_| ())); + let future = select(exit, informant) + .map(|_| Ok(())) + .compat(); + + executor.spawn(future); // we eagerly drop the service so that the internal exit future is fired, // but we need to keep holding a reference to the global telemetry guard let _telemetry = service.telemetry(); let work = worker.work(&service, Arc::new(executor)); - let service = service.map_err(|err| error!("Error while running Service: {}", err)); - let _ = runtime.block_on(service.select(work)); - exit_send.fire(); + let service = service + .map_err(|err| error!("Error while running Service: {}", err)) + .compat(); + let future = select(service, work) + .map(|_| Ok::<_, ()>(())) + .compat(); + let _ = runtime.block_on(future); + let _ = exit_send.send(()); + + use futures01::Future; // TODO [andre]: timeout this future substrate/#1318 let _ = runtime.shutdown_on_idle().wait(); diff --git a/collator/Cargo.toml b/collator/Cargo.toml index adeb300f2e23..f114b1b6e726 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -6,8 +6,8 @@ description = "Collator node implementation" edition = "2018" [dependencies] -futures = "0.1.29" -futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } +futures01 = { package = "futures", version = "0.1.17" } +futures = { version = "0.3.1", features = ["compat"] } client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } @@ -21,6 +21,7 @@ polkadot-validation = { path = "../validation" } polkadot-service = { path = "../service" } log = "0.4.8" tokio = "0.1.22" +futures-timer = "1.0" [dev-dependencies] keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/collator/src/lib.rs b/collator/src/lib.rs index 49eb734d8d34..ee3d619ac8a0 100644 --- a/collator/src/lib.rs +++ b/collator/src/lib.rs @@ -49,8 +49,10 @@ use std::fmt; use std::sync::Arc; use std::time::Duration; -use futures::{future, Stream, Future, IntoFuture}; -use futures03::{TryStreamExt as _, StreamExt as _}; +use futures::{ + future, Future, Stream, FutureExt, TryFutureExt, StreamExt, + compat::{Compat01As03, Future01CompatExt, Stream01CompatExt} +}; use log::{warn, error}; use client::BlockchainEvents; use primitives::{Pair, Blake2Hasher}; @@ -67,7 +69,6 @@ use polkadot_cli::{ use polkadot_network::validation::{LeafWorkParams, ValidationNetwork}; use polkadot_network::{PolkadotNetworkService, PolkadotProtocol}; use polkadot_runtime::RuntimeApi; -use tokio::timer::Timeout; pub use polkadot_cli::{VersionInfo, TaskExecutor}; pub use polkadot_network::validation::Incoming; @@ -81,14 +82,14 @@ const COLLATION_TIMEOUT: Duration = Duration::from_secs(30); pub trait Network: Send + Sync { /// Convert the given `CollatorId` to a `PeerId`. fn collator_id_to_peer_id(&self, collator_id: CollatorId) -> - Box, Error=()> + Send>; + Box> + Unpin + Send>; /// Create a `Stream` of checked statements for the given `relay_parent`. /// /// The returned stream will not terminate, so it is required to make sure that the stream is /// dropped when it is not required anymore. Otherwise, it will stick around in memory /// infinitely. - fn checked_statements(&self, relay_parent: Hash) -> Box>; + fn checked_statements(&self, relay_parent: Hash) -> Box>; } impl Network for ValidationNetwork where @@ -96,13 +97,21 @@ impl Network for ValidationNetwork - Box, Error=()> + Send> + Box> + Unpin + Send> { - Box::new(Self::collator_id_to_peer_id(self, collator_id)) + Box::new( + Self::collator_id_to_peer_id(self, collator_id) + .compat() + .map(|res| res.ok().and_then(|id| id)) + ) } - fn checked_statements(&self, relay_parent: Hash) -> Box> { - Box::new(Self::checked_statements(self, relay_parent)) + fn checked_statements(&self, relay_parent: Hash) -> Box> { + Box::new( + Self::checked_statements(self, relay_parent) + .compat() + .filter_map(|item| future::ready(item.ok())) + ) } } @@ -153,7 +162,7 @@ pub trait BuildParachainContext { /// This can be implemented through an externally attached service or a stub. /// This is expected to be a lightweight, shared type like an Arc. pub trait ParachainContext: Clone { - type ProduceCandidate: IntoFuture; + type ProduceCandidate: Future>; /// Produce a candidate, given the relay parent hash, the latest ingress queue information /// and the last parachain head. @@ -173,14 +182,14 @@ pub trait RelayChainContext { /// Future that resolves to the un-routed egress queues of a parachain. /// The first item is the oldest. - type FutureEgress: IntoFuture; + type FutureEgress: Future>; /// Get un-routed egress queues from a parachain to the local parachain. fn unrouted_egress(&self, _id: ParaId) -> Self::FutureEgress; } /// Produce a candidate for the parachain, with given contexts, parent head, and signing key. -pub fn collate<'a, R, P>( +pub async fn collate( relay_parent: Hash, local_id: ParaId, parachain_status: ParachainStatus, @@ -188,53 +197,45 @@ pub fn collate<'a, R, P>( mut para_context: P, key: Arc, ) - -> impl Future> + 'a + -> Result<(parachain::Collation, OutgoingMessages), Error> where R: RelayChainContext, - R::Error: 'a, - R::FutureEgress: 'a, - P: ParachainContext + 'a, - ::Future: Send, + P: ParachainContext, + P::ProduceCandidate: Send, { - let ingress = relay_context.unrouted_egress(local_id).into_future().map_err(Error::Polkadot); - ingress - .and_then(move |ingress| { - para_context.produce_candidate( - relay_parent, - parachain_status, - ingress.0.iter().flat_map(|&(id, ref msgs)| msgs.iter().cloned().map(move |msg| (id, msg))) - ) - .into_future() - .map(move |x| (ingress, x)) - .map_err(Error::Collator) - }) - .and_then(move |(ingress, (block_data, head_data, mut outgoing))| { - let block_data_hash = block_data.hash(); - let signature = key.sign(block_data_hash.as_ref()).into(); - let egress_queue_roots = - polkadot_validation::egress_roots(&mut outgoing.outgoing_messages); - - let receipt = parachain::CandidateReceipt { - parachain_index: local_id, - collator: key.public(), - signature, - head_data, - egress_queue_roots, - fees: 0, - block_data_hash, - upward_messages: Vec::new(), - }; - - let collation = parachain::Collation { - receipt, - pov: PoVBlock { - block_data, - ingress, - }, - }; - - Ok((collation, outgoing)) - }) + let ingress = relay_context.unrouted_egress(local_id).await.map_err(Error::Polkadot)?; + + let (block_data, head_data, mut outgoing) = para_context.produce_candidate( + relay_parent, + parachain_status, + ingress.0.iter().flat_map(|&(id, ref msgs)| msgs.iter().cloned().map(move |msg| (id, msg))) + ).map_err(Error::Collator).await?; + + let block_data_hash = block_data.hash(); + let signature = key.sign(block_data_hash.as_ref()); + let egress_queue_roots = + polkadot_validation::egress_roots(&mut outgoing.outgoing_messages); + + let receipt = parachain::CandidateReceipt { + parachain_index: local_id, + collator: key.public(), + signature, + head_data, + egress_queue_roots, + fees: 0, + block_data_hash, + upward_messages: Vec::new(), + }; + + let collation = parachain::Collation { + receipt, + pov: PoVBlock { + block_data, + ingress, + }, + }; + + Ok((collation, outgoing)) } /// Polkadot-api context. @@ -247,10 +248,10 @@ struct ApiContext { impl RelayChainContext for ApiContext where P: ProvideRuntimeApi + Send + Sync, P::Api: ParachainHost, - E: Future + Clone + Send + Sync + 'static, + E: futures01::Future + Clone + Send + Sync + 'static, { type Error = String; - type FutureEgress = Box + Send>; + type FutureEgress = Box> + Unpin + Send>; fn unrouted_egress(&self, _id: ParaId) -> Self::FutureEgress { // TODO: https://github.com/paritytech/polkadot/issues/253 @@ -260,7 +261,9 @@ impl RelayChainContext for ApiContext where local_session_key: None, parent_hash: self.parent_hash, authorities: self.validators.clone(), - }).map_err(|e| format!("unable to instantiate validation session: {:?}", e)); + }) + .compat() + .map_err(|e| format!("unable to instantiate validation session: {:?}", e)); Box::new(future::ok(ConsolidatedIngress(Vec::new()))) } @@ -274,27 +277,27 @@ struct CollationNode { } impl IntoExit for CollationNode where - E: Future + Send + 'static + E: futures01::Future + Unpin + Send + 'static { - type Exit = E; + type Exit = future::Map, fn (Result<(), ()>) -> ()>; fn into_exit(self) -> Self::Exit { - self.exit + self.exit.compat().map(drop) } } impl Worker for CollationNode where P: BuildParachainContext + Send + 'static, P::ParachainContext: Send + 'static, - <::ProduceCandidate as IntoFuture>::Future: Send + 'static, - E: Future + Clone + Send + Sync + 'static, + ::ProduceCandidate: Send + 'static, + E: futures01::Future + Clone + Unpin + Send + Sync + 'static, { - type Work = Box + Send>; + type Work = Box + Unpin + Send>; fn configuration(&self) -> CustomConfiguration { let mut config = CustomConfiguration::default(); config.collating_for = Some(( self.key.public(), - self.para_id.clone(), + self.para_id, )); config } @@ -321,7 +324,7 @@ impl Worker for CollationNode where select_chain } else { error!("The node cannot work because it can't select chain."); - return Box::new(future::err(())); + return Box::new(future::ready(())); }; let is_known = move |block_hash: &Hash| { @@ -364,20 +367,18 @@ impl Worker for CollationNode where Ok(ctx) => ctx, Err(()) => { error!("Could not build the parachain context!"); - return Box::new(future::err(())) + return Box::new(future::ready(())) } }; let inner_exit = exit.clone(); let work = client.import_notification_stream() - .map(|v| Ok::<_, ()>(v)) - .compat() .for_each(move |notification| { macro_rules! try_fr { ($e:expr) => { match $e { Ok(x) => x, - Err(e) => return future::Either::A(future::err(Error::Polkadot( + Err(e) => return future::Either::Left(future::err(Error::Polkadot( format!("{:?}", e) ))), } @@ -393,11 +394,11 @@ impl Worker for CollationNode where let parachain_context = parachain_context.clone(); let validation_network = validation_network.clone(); - let work = future::lazy(move || { + let work = future::lazy(move |_| { let api = client.runtime_api(); let status = match try_fr!(api.parachain_status(&id, para_id)) { Some(status) => status, - None => return future::Either::A(future::ok(())), + None => return future::Either::Left(future::ok(())), }; let validators = try_fr!(api.validators(&id)); @@ -421,7 +422,7 @@ impl Worker for CollationNode where context, parachain_context, key, - ).map(move |(collation, outgoing)| { + ).map_ok(move |(collation, outgoing)| { network.with_spec(move |spec, ctx| { let res = spec.add_local_collation( ctx, @@ -437,23 +438,36 @@ impl Worker for CollationNode where }) }); - future::Either::B(collation_work) - }); - let deadlined = Timeout::new(work, COLLATION_TIMEOUT); - let silenced = deadlined.then(|res| match res { - Ok(()) => Ok(()), - Err(_) => { - warn!("Collation failure: timeout"); - Ok(()) - } - }); + future::Either::Right(collation_work) + }).map(|_| Ok::<_, ()>(())); - tokio::spawn(silenced.select(inner_exit.clone()).then(|_| Ok(()))); - Ok(()) + let deadlined = future::select( + work, + futures_timer::Delay::new(COLLATION_TIMEOUT) + ); + + let silenced = deadlined + .map(|either| { + if let future::Either::Right(_) = either { + warn!("Collation failure: timeout"); + } + }); + + let future = future::select( + silenced, + inner_exit.clone().map(|_| Ok::<_, ()>(())).compat() + ).map(|_| Ok::<_, ()>(())).compat(); + + tokio::spawn(future); + future::ready(()) }); - let work_and_exit = work.select(exit).then(|_| Ok(())); - Box::new(work_and_exit) as Box<_> + let work_and_exit = future::select( + work, + exit.map(|_| Ok::<_, ()>(())).compat() + ).map(|_| ()); + + Box::new(work_and_exit) } } @@ -481,11 +495,10 @@ pub fn run_collator( ) -> polkadot_cli::error::Result<()> where P: BuildParachainContext + Send + 'static, P::ParachainContext: Send + 'static, - <::ProduceCandidate as IntoFuture>::Future: Send + 'static, - E: IntoFuture, - E::Future: Send + Clone + Sync + 'static, + ::ProduceCandidate: Send + 'static, + E: futures01::Future + Unpin + Send + Clone + Sync + 'static, { - let node_logic = CollationNode { build_parachain_context, exit: exit.into_future(), para_id, key }; + let node_logic = CollationNode { build_parachain_context, exit, para_id, key }; polkadot_cli::run(node_logic, version) } @@ -503,12 +516,12 @@ mod tests { impl RelayChainContext for DummyRelayChainContext { type Error = (); - type FutureEgress = Box>; + type FutureEgress = Box> + Unpin>; fn unrouted_egress(&self, para_id: ParaId) -> Self::FutureEgress { match self.ingress.get(¶_id) { Some(ingress) => Box::new(future::ok(ingress.clone())), - None => Box::new(future::empty()), + None => Box::new(future::pending()), } } } @@ -517,16 +530,16 @@ mod tests { struct DummyParachainContext; impl ParachainContext for DummyParachainContext { - type ProduceCandidate = Result<(BlockData, HeadData, OutgoingMessages), InvalidHead>; + type ProduceCandidate = future::Ready>; fn produce_candidate>( &mut self, _relay_parent: Hash, _status: ParachainStatus, ingress: I, - ) -> Result<(BlockData, HeadData, OutgoingMessages), InvalidHead> { + ) -> Self::ProduceCandidate { // send messages right back. - Ok(( + future::ok(( BlockData(vec![1, 2, 3, 4, 5,]), HeadData(vec![9, 9, 9]), OutgoingMessages { @@ -570,7 +583,7 @@ mod tests { (a, messages_from_a), ])); - let collation = collate( + let future = collate( Default::default(), id, ParachainStatus { @@ -584,7 +597,9 @@ mod tests { context.clone(), DummyParachainContext, Arc::new(Sr25519Keyring::Alice.pair().into()), - ).wait().unwrap().0; + ); + + let collation = futures::executor::block_on(future).unwrap().0; // ascending order by root. assert_eq!(collation.receipt.egress_queue_roots, vec![(a, root_a), (b, root_b)]); diff --git a/network/Cargo.toml b/network/Cargo.toml index d7e6c257efd7..77f4f43a923a 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -15,8 +15,8 @@ codec = { package = "parity-scale-codec", version = "1.1.0", default-features = substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -futures = "0.1.29" -futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } +futures = "0.1" +futures03 = { package = "futures", version = "0.3.1", features = ["compat"] } log = "0.4.8" exit-future = "0.1.4" substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 094eebea2d5a..7938909a967b 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -67,7 +67,7 @@ libsecp256k1 = "0.3.2" tiny-keccak = "1.5.0" keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } -trie-db = "0.15.2" +trie-db = "0.16.0" serde_json = "1.0.41" [build-dependencies] diff --git a/runtime/src/crowdfund.rs b/runtime/src/crowdfund.rs index 7c1067af504c..7dd44681ebe4 100644 --- a/runtime/src/crowdfund.rs +++ b/runtime/src/crowdfund.rs @@ -663,7 +663,7 @@ mod tests { System::on_initialize(System::block_number()); Balances::on_initialize(System::block_number()); Slots::on_initialize(System::block_number()); - Treasury::on_finalize(System::block_number()); + Treasury::on_initialize(System::block_number()); Crowdfund::on_initialize(System::block_number()); } } diff --git a/src/main.rs b/src/main.rs index 1cee21ae15a9..842f70cbe42a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,15 +19,15 @@ #![warn(missing_docs)] use cli::{AbstractService, VersionInfo, TaskExecutor}; -use futures::sync::oneshot; -use futures::{future, Future}; +use futures::channel::oneshot; +use futures::{future, FutureExt}; use std::cell::RefCell; // the regular polkadot worker simply does nothing until ctrl-c struct Worker; impl cli::IntoExit for Worker { - type Exit = future::MapErr, fn(oneshot::Canceled) -> ()>; + type Exit = future::Map, fn(Result<(), oneshot::Canceled>) -> ()>; fn into_exit(self) -> Self::Exit { // can't use signal directly here because CtrlC takes only `Fn`. let (exit_send, exit) = oneshot::channel(); @@ -39,7 +39,7 @@ impl cli::IntoExit for Worker { } }).expect("Error setting Ctrl-C handler"); - exit.map_err(drop) + exit.map(drop) } } diff --git a/test-parachains/adder/collator/Cargo.toml b/test-parachains/adder/collator/Cargo.toml index 0a86193b77fe..8dd785990902 100644 --- a/test-parachains/adder/collator/Cargo.toml +++ b/test-parachains/adder/collator/Cargo.toml @@ -14,5 +14,5 @@ client = { package = "substrate-client", git = "https://github.com/paritytech/su client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } parking_lot = "0.9.0" ctrlc = { version = "3.1.3", features = ["termination"] } -futures = "0.1.29" +futures = "0.3.1" exit-future = "0.1.4" diff --git a/test-parachains/adder/collator/src/main.rs b/test-parachains/adder/collator/src/main.rs index 3acff2a79936..ac8a9f814709 100644 --- a/test-parachains/adder/collator/src/main.rs +++ b/test-parachains/adder/collator/src/main.rs @@ -33,6 +33,7 @@ use collator::{ InvalidHead, ParachainContext, VersionInfo, Network, BuildParachainContext, TaskExecutor, }; use parking_lot::Mutex; +use futures::future::{Ready, ok, err}; const GENESIS: AdderHead = AdderHead { number: 0, @@ -57,17 +58,19 @@ struct AdderContext { /// The parachain context. impl ParachainContext for AdderContext { - type ProduceCandidate = Result<(BlockData, HeadData, OutgoingMessages), InvalidHead>; + type ProduceCandidate = Ready>; fn produce_candidate>( &mut self, _relay_parent: Hash, status: ParachainStatus, ingress: I, - ) -> Result<(BlockData, HeadData, OutgoingMessages), InvalidHead> + ) -> Self::ProduceCandidate { - let adder_head = AdderHead::decode(&mut &status.head_data.0[..]) - .map_err(|_| InvalidHead)?; + let adder_head = match AdderHead::decode(&mut &status.head_data.0[..]) { + Ok(adder_head) => adder_head, + Err(_) => return err(InvalidHead) + }; let mut db = self.db.lock(); @@ -98,7 +101,7 @@ impl ParachainContext for AdderContext { next_head.number, next_body.state.overflowing_add(next_body.add).0); db.insert(next_head.clone(), next_body); - Ok((encoded_body, encoded_head, OutgoingMessages { outgoing_messages: Vec::new() })) + ok((encoded_body, encoded_head, OutgoingMessages { outgoing_messages: Vec::new() })) } } diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 2eadf2cbf278..f82ac57bac7d 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -5,9 +5,10 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -futures = "0.1.29" -futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } -futures-timer = "0.4.0" +futures = "0.1.17" +futures03 = { package = "futures", version = "0.3.1", features = ["compat"] } +futures-timer = "2.0" +async-std = { version = "1.0.1", features = ["unstable"] } parking_lot = "0.9.0" tokio = "0.1.22" derive_more = "0.14.1" diff --git a/validation/src/lib.rs b/validation/src/lib.rs index a02e277cfad4..e114a294bb7c 100644 --- a/validation/src/lib.rs +++ b/validation/src/lib.rs @@ -29,7 +29,13 @@ //! //! Groups themselves may be compromised by malicious authorities. -use std::{collections::{HashMap, HashSet}, pin::Pin, sync::Arc, time::{self, Duration, Instant}}; +use std::{ + collections::{HashMap, HashSet}, + pin::Pin, + sync::Arc, + time::{self, Duration, Instant}, + task::{Poll, Context} +}; use babe_primitives::BabeApi; use client::{BlockchainEvents, BlockBody}; @@ -48,12 +54,13 @@ use polkadot_primitives::parachain::{ }; use primitives::Pair; use runtime_primitives::traits::{ProvideRuntimeApi, DigestFor}; -use futures_timer::{Delay, Interval}; +use futures_timer::Delay; +use async_std::stream::{interval, Interval}; use transaction_pool::txpool::{Pool, ChainApi as PoolChainApi}; use attestation_service::ServiceHandle; use futures::prelude::*; -use futures03::{future::{self, Either, FutureExt}, task::Context, stream::StreamExt}; +use futures03::{future::{self, Either}, FutureExt, StreamExt}; use collation::CollationFetch; use dynamic_inclusion::DynamicInclusion; use inherents::InherentData; @@ -594,7 +601,7 @@ impl consensus::Proposer for Proposer where let timing = ProposalTiming { minimum: delay_future, - attempt_propose: Interval::new(ATTEMPT_PROPOSE_EVERY), + attempt_propose: interval(ATTEMPT_PROPOSE_EVERY), enough_candidates: Delay::new(enough_candidates), dynamic_inclusion, last_included: initial_included, @@ -642,26 +649,26 @@ struct ProposalTiming { impl ProposalTiming { // whether it's time to attempt a proposal. // shouldn't be called outside of the context of a task. - fn poll(&mut self, cx: &mut Context, included: usize) -> futures03::Poll> { + fn poll(&mut self, cx: &mut Context, included: usize) -> Poll<()> { // first drain from the interval so when the minimum delay is up // we don't have any notifications built up. // // this interval is just meant to produce periodic task wakeups // that lead to the `dynamic_inclusion` getting updated as necessary. - while let futures03::Poll::Ready(x) = self.attempt_propose.poll_next_unpin(cx) { + while let Poll::Ready(x) = self.attempt_propose.poll_next_unpin(cx) { x.expect("timer still alive; intervals never end; qed"); } // wait until the minimum time has passed. if let Some(mut minimum) = self.minimum.take() { - if let futures03::Poll::Pending = minimum.poll_unpin(cx) { + if let Poll::Pending = minimum.poll_unpin(cx) { self.minimum = Some(minimum); - return futures03::Poll::Pending; + return Poll::Pending; } } if included == self.last_included { - return self.enough_candidates.poll_unpin(cx).map_err(Error::Timer); + return self.enough_candidates.poll_unpin(cx); } // the amount of includable candidates has changed. schedule a wakeup @@ -669,10 +676,10 @@ impl ProposalTiming { match self.dynamic_inclusion.acceptable_in(Instant::now(), included) { Some(instant) => { self.last_included = included; - self.enough_candidates.reset(instant); - self.enough_candidates.poll_unpin(cx).map_err(Error::Timer) + self.enough_candidates.reset(Instant::now() + instant); + self.enough_candidates.poll_unpin(cx) } - None => futures03::Poll::Ready(Ok(())), + None => Poll::Ready(()), } } } @@ -791,16 +798,16 @@ impl futures03::Future for CreateProposal where { type Output = Result; - fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> futures03::Poll { + fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll { // 1. try to propose if we have enough includable candidates and other // delays have concluded. let included = self.table.includable_count(); - futures03::ready!(self.timing.poll(cx, included))?; + futures03::ready!(self.timing.poll(cx, included)); // 2. propose let proposed_candidates = self.table.proposed_set(); - futures03::Poll::Ready(self.propose_with(proposed_candidates)) + Poll::Ready(self.propose_with(proposed_candidates)) } } From 1dd0fd23770b6dbb74bc3c2c08147c63def8c6c0 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Fri, 22 Nov 2019 23:41:11 +0100 Subject: [PATCH 13/14] Fix documentation warning --- cli/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/lib.rs b/cli/src/lib.rs index eb5a23fe5e7d..a8e3e87edfee 100644 --- a/cli/src/lib.rs +++ b/cli/src/lib.rs @@ -36,8 +36,8 @@ pub use service::{ pub use cli::{VersionInfo, IntoExit, NoCustom}; pub use cli::{display_role, error}; -/// Abstraction over an executor that lets you spawn tasks in the background. type BoxedFuture = Box + Send>; +/// Abstraction over an executor that lets you spawn tasks in the background. pub type TaskExecutor = Arc + Send + Sync>; fn load_spec(id: &str) -> Result, String> { From 025785ace3e298b7c811f5e60195a3fa7c853dce Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Fri, 22 Nov 2019 23:49:36 +0100 Subject: [PATCH 14/14] Fix test compilation --- runtime/src/parachains.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/parachains.rs b/runtime/src/parachains.rs index 12f327653f2d..e83b69348ecb 100644 --- a/runtime/src/parachains.rs +++ b/runtime/src/parachains.rs @@ -2035,7 +2035,7 @@ mod tests { #[test] fn empty_trie_root_const_is_blake2_hashed_null_node() { - let hashed_null_node = as trie_db::NodeCodec>::hashed_null_node(); + let hashed_null_node = as trie_db::NodeCodec>::hashed_null_node(); assert_eq!(hashed_null_node, EMPTY_TRIE_ROOT.into()) } }