Releasing rc4 – Rhinoceros (#6515)

Co-authored-by: Martin Pugh <pugh@s3kr.it>
This commit is contained in:
Benjamin Kampmann
2020-06-25 23:18:43 +02:00
committed by GitHub
parent f53e5355f8
commit f6ebd5f87d
188 changed files with 1876 additions and 1823 deletions
@@ -19,18 +19,17 @@ while IFS= read -r line; do
if has_label 'paritytech/substrate' "$pr_id" 'B0-silent'; then
continue
fi
if has_label 'paritytech/substrate' "$pr_id" 'B1-runtimenoteworthy'; then
runtime_changes="$runtime_changes
if has_label 'paritytech/substrate' "$pr_id" 'B3-apinoteworthy' ; then
api_changes="$api_changes
$line"
fi
if has_label 'paritytech/substrate' "$pr_id" 'B1-clientnoteworthy'; then
if has_label 'paritytech/substrate' "$pr_id" 'B5-clientnoteworthy'; then
client_changes="$client_changes
$line"
fi
if has_label 'paritytech/substrate' "$pr_id" 'B1-apinoteworthy' ; then
api_changes="$api_changes
if has_label 'paritytech/substrate' "$pr_id" 'B7-runtimenoteworthy'; then
runtime_changes="$runtime_changes
$line"
continue
fi
done <<< "$all_changes"
+1 -1
View File
@@ -5,7 +5,7 @@ api_base="https://api.github.com/repos"
# Function to take 2 git tags/commits and get any lines from commit messages
# that contain something that looks like a PR reference: e.g., (#1234)
sanitised_git_logs(){
git --no-pager log --pretty=format:"%s" "$1..$2" |
git --no-pager log --pretty=format:"%s" "$1...$2" |
# Only find messages referencing a PR
grep -E '\(#[0-9]+\)' |
# Strip any asterisks
+182 -182
View File
File diff suppressed because it is too large Load Diff
+20 -20
View File
@@ -1,6 +1,6 @@
[package]
name = "node-template"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Anonymous"]
description = "Substrate Node template"
edition = "2018"
@@ -21,25 +21,25 @@ log = "0.4.8"
structopt = "0.3.8"
parking_lot = "0.10.0"
sc-cli = { version = "0.8.0-rc3", path = "../../../client/cli", features = ["wasmtime"] }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sc-executor = { version = "0.8.0-rc3", path = "../../../client/executor", features = ["wasmtime"] }
sc-service = { version = "0.8.0-rc3", path = "../../../client/service", features = ["wasmtime"] }
sp-inherents = { version = "2.0.0-rc3", path = "../../../primitives/inherents" }
sc-transaction-pool = { version = "2.0.0-rc3", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../../primitives/transaction-pool" }
sc-network = { version = "0.8.0-rc3", path = "../../../client/network" }
sc-consensus-aura = { version = "0.8.0-rc3", path = "../../../client/consensus/aura" }
sp-consensus-aura = { version = "0.8.0-rc3", path = "../../../primitives/consensus/aura" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0-rc3", path = "../../../client/consensus/common" }
sc-finality-grandpa = { version = "0.8.0-rc3", path = "../../../client/finality-grandpa" }
sp-finality-grandpa = { version = "2.0.0-rc3", path = "../../../primitives/finality-grandpa" }
sc-client-api = { version = "2.0.0-rc3", path = "../../../client/api" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sc-basic-authorship = { path = "../../../client/basic-authorship", version = "0.8.0-rc3"}
sc-cli = { version = "0.8.0-rc4", path = "../../../client/cli", features = ["wasmtime"] }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sc-executor = { version = "0.8.0-rc4", path = "../../../client/executor", features = ["wasmtime"] }
sc-service = { version = "0.8.0-rc4", path = "../../../client/service", features = ["wasmtime"] }
sp-inherents = { version = "2.0.0-rc4", path = "../../../primitives/inherents" }
sc-transaction-pool = { version = "2.0.0-rc4", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../../primitives/transaction-pool" }
sc-network = { version = "0.8.0-rc4", path = "../../../client/network" }
sc-consensus-aura = { version = "0.8.0-rc4", path = "../../../client/consensus/aura" }
sp-consensus-aura = { version = "0.8.0-rc4", path = "../../../primitives/consensus/aura" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0-rc4", path = "../../../client/consensus/common" }
sc-finality-grandpa = { version = "0.8.0-rc4", path = "../../../client/finality-grandpa" }
sp-finality-grandpa = { version = "2.0.0-rc4", path = "../../../primitives/finality-grandpa" }
sc-client-api = { version = "2.0.0-rc4", path = "../../../client/api" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sc-basic-authorship = { path = "../../../client/basic-authorship", version = "0.8.0-rc4"}
node-template-runtime = { version = "2.0.0-rc3", path = "../runtime" }
node-template-runtime = { version = "2.0.0-rc4", path = "../runtime" }
[build-dependencies]
substrate-build-script-utils = { version = "2.0.0-rc3", path = "../../../utils/build-script-utils" }
substrate-build-script-utils = { version = "2.0.0-rc4", path = "../../../utils/build-script-utils" }
@@ -2,7 +2,7 @@
authors = ['Anonymous']
edition = '2018'
name = 'pallet-template'
version = "2.0.0-rc3"
version = "2.0.0-rc4"
license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
@@ -16,27 +16,27 @@ codec = { package = "parity-scale-codec", version = "1.3.1", default-features =
[dependencies.frame-support]
default-features = false
version = "2.0.0-rc3"
version = "2.0.0-rc4"
path = "../../../../frame/support"
[dependencies.frame-system]
default-features = false
version = "2.0.0-rc3"
version = "2.0.0-rc4"
path = "../../../../frame/system"
[dev-dependencies.sp-core]
default-features = false
version = "2.0.0-rc3"
version = "2.0.0-rc4"
path = "../../../../primitives/core"
[dev-dependencies.sp-io]
default-features = false
version = "2.0.0-rc3"
version = "2.0.0-rc4"
path = "../../../../primitives/io"
[dev-dependencies.sp-runtime]
default-features = false
version = "2.0.0-rc3"
version = "2.0.0-rc4"
path = "../../../../primitives/runtime"
+24 -24
View File
@@ -1,6 +1,6 @@
[package]
name = "node-template-runtime"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Anonymous"]
edition = "2018"
license = "Unlicense"
@@ -13,31 +13,31 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
aura = { version = "2.0.0-rc3", default-features = false, package = "pallet-aura", path = "../../../frame/aura" }
balances = { version = "2.0.0-rc3", default-features = false, package = "pallet-balances", path = "../../../frame/balances" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/support" }
grandpa = { version = "2.0.0-rc3", default-features = false, package = "pallet-grandpa", path = "../../../frame/grandpa" }
randomness-collective-flip = { version = "2.0.0-rc3", default-features = false, package = "pallet-randomness-collective-flip", path = "../../../frame/randomness-collective-flip" }
sudo = { version = "2.0.0-rc3", default-features = false, package = "pallet-sudo", path = "../../../frame/sudo" }
system = { version = "2.0.0-rc3", default-features = false, package = "frame-system", path = "../../../frame/system" }
timestamp = { version = "2.0.0-rc3", default-features = false, package = "pallet-timestamp", path = "../../../frame/timestamp" }
transaction-payment = { version = "2.0.0-rc3", default-features = false, package = "pallet-transaction-payment", path = "../../../frame/transaction-payment" }
frame-executive = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/executive" }
aura = { version = "2.0.0-rc4", default-features = false, package = "pallet-aura", path = "../../../frame/aura" }
balances = { version = "2.0.0-rc4", default-features = false, package = "pallet-balances", path = "../../../frame/balances" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/support" }
grandpa = { version = "2.0.0-rc4", default-features = false, package = "pallet-grandpa", path = "../../../frame/grandpa" }
randomness-collective-flip = { version = "2.0.0-rc4", default-features = false, package = "pallet-randomness-collective-flip", path = "../../../frame/randomness-collective-flip" }
sudo = { version = "2.0.0-rc4", default-features = false, package = "pallet-sudo", path = "../../../frame/sudo" }
system = { version = "2.0.0-rc4", default-features = false, package = "frame-system", path = "../../../frame/system" }
timestamp = { version = "2.0.0-rc4", default-features = false, package = "pallet-timestamp", path = "../../../frame/timestamp" }
transaction-payment = { version = "2.0.0-rc4", default-features = false, package = "pallet-transaction-payment", path = "../../../frame/transaction-payment" }
frame-executive = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/executive" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-api = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-rc3"}
sp-consensus-aura = { version = "0.8.0-rc3", default-features = false, path = "../../../primitives/consensus/aura" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/core" }
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-rc3"}
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/io" }
sp-offchain = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/offchain" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
sp-session = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/session" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/std" }
sp-transaction-pool = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/version" }
sp-api = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-rc4"}
sp-consensus-aura = { version = "0.8.0-rc4", default-features = false, path = "../../../primitives/consensus/aura" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/core" }
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-rc4"}
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/io" }
sp-offchain = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/offchain" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
sp-session = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/session" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
sp-transaction-pool = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/version" }
template = { version = "2.0.0-rc3", default-features = false, path = "../pallets/template", package = "pallet-template" }
template = { version = "2.0.0-rc4", default-features = false, path = "../pallets/template", package = "pallet-template" }
[build-dependencies]
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "node-bench"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate node integration benchmarks."
edition = "2018"
@@ -10,21 +10,21 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
[dependencies]
log = "0.4.8"
node-primitives = { version = "2.0.0-rc3", path = "../primitives" }
node-testing = { version = "2.0.0-rc3", path = "../testing" }
node-runtime = { version = "2.0.0-rc3", path = "../runtime" }
sc-cli = { version = "0.8.0-rc3", path = "../../../client/cli" }
sc-client-api = { version = "2.0.0-rc3", path = "../../../client/api/" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../../primitives/state-machine" }
node-primitives = { version = "2.0.0-rc4", path = "../primitives" }
node-testing = { version = "2.0.0-rc4", path = "../testing" }
node-runtime = { version = "2.0.0-rc4", path = "../runtime" }
sc-cli = { version = "0.8.0-rc4", path = "../../../client/cli" }
sc-client-api = { version = "2.0.0-rc4", path = "../../../client/api/" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../../primitives/state-machine" }
serde = "1.0.101"
serde_json = "1.0.41"
structopt = "0.3"
derive_more = "0.99.2"
kvdb = "0.6"
kvdb-rocksdb = "0.8"
sp-trie = { version = "2.0.0-rc3", path = "../../../primitives/trie" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-trie = { version = "2.0.0-rc4", path = "../../../primitives/trie" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
hash-db = "0.15.2"
tempfile = "3.1.0"
fs_extra = "1"
@@ -1,6 +1,6 @@
[package]
name = "node-browser-testing"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Tests for the in-browser light client."
edition = "2018"
@@ -17,5 +17,5 @@ wasm-bindgen-futures = "0.4.10"
wasm-bindgen-test = "0.3.10"
futures = "0.3.4"
node-cli = { path = "../cli", default-features = false, features = ["browser"] , version = "2.0.0-rc3"}
sc-rpc-api = { path = "../../../client/rpc-api" , version = "0.8.0-rc3"}
node-cli = { path = "../cli", default-features = false, features = ["browser"] , version = "2.0.0-rc4"}
sc-rpc-api = { path = "../../../client/rpc-api" , version = "0.8.0-rc4"}
+59 -59
View File
@@ -1,6 +1,6 @@
[package]
name = "node-cli"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic Substrate node implementation in Rust."
build = "build.rs"
@@ -46,76 +46,76 @@ tracing = "0.1.10"
parking_lot = "0.10.0"
# primitives
sp-authority-discovery = { version = "2.0.0-rc3", path = "../../../primitives/authority-discovery" }
sp-consensus-babe = { version = "0.8.0-rc3", path = "../../../primitives/consensus/babe" }
grandpa-primitives = { version = "2.0.0-rc3", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/timestamp" }
sp-finality-tracker = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/finality-tracker" }
sp-inherents = { version = "2.0.0-rc3", path = "../../../primitives/inherents" }
sp-keyring = { version = "2.0.0-rc3", path = "../../../primitives/keyring" }
sp-io = { version = "2.0.0-rc3", path = "../../../primitives/io" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../../primitives/transaction-pool" }
sp-authority-discovery = { version = "2.0.0-rc4", path = "../../../primitives/authority-discovery" }
sp-consensus-babe = { version = "0.8.0-rc4", path = "../../../primitives/consensus/babe" }
grandpa-primitives = { version = "2.0.0-rc4", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/timestamp" }
sp-finality-tracker = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/finality-tracker" }
sp-inherents = { version = "2.0.0-rc4", path = "../../../primitives/inherents" }
sp-keyring = { version = "2.0.0-rc4", path = "../../../primitives/keyring" }
sp-io = { version = "2.0.0-rc4", path = "../../../primitives/io" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../../primitives/transaction-pool" }
# client dependencies
sc-client-api = { version = "2.0.0-rc3", path = "../../../client/api" }
sc-chain-spec = { version = "2.0.0-rc3", path = "../../../client/chain-spec" }
sc-consensus = { version = "0.8.0-rc3", path = "../../../client/consensus/common" }
sc-transaction-pool = { version = "2.0.0-rc3", path = "../../../client/transaction-pool" }
sc-network = { version = "0.8.0-rc3", path = "../../../client/network" }
sc-consensus-babe = { version = "0.8.0-rc3", path = "../../../client/consensus/babe" }
grandpa = { version = "0.8.0-rc3", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
sc-client-db = { version = "0.8.0-rc3", default-features = false, path = "../../../client/db" }
sc-offchain = { version = "2.0.0-rc3", path = "../../../client/offchain" }
sc-rpc = { version = "2.0.0-rc3", path = "../../../client/rpc" }
sc-basic-authorship = { version = "0.8.0-rc3", path = "../../../client/basic-authorship" }
sc-service = { version = "0.8.0-rc3", default-features = false, path = "../../../client/service" }
sc-tracing = { version = "2.0.0-rc3", path = "../../../client/tracing" }
sc-telemetry = { version = "2.0.0-rc3", path = "../../../client/telemetry" }
sc-authority-discovery = { version = "0.8.0-rc3", path = "../../../client/authority-discovery" }
sc-client-api = { version = "2.0.0-rc4", path = "../../../client/api" }
sc-chain-spec = { version = "2.0.0-rc4", path = "../../../client/chain-spec" }
sc-consensus = { version = "0.8.0-rc4", path = "../../../client/consensus/common" }
sc-transaction-pool = { version = "2.0.0-rc4", path = "../../../client/transaction-pool" }
sc-network = { version = "0.8.0-rc4", path = "../../../client/network" }
sc-consensus-babe = { version = "0.8.0-rc4", path = "../../../client/consensus/babe" }
grandpa = { version = "0.8.0-rc4", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
sc-client-db = { version = "0.8.0-rc4", default-features = false, path = "../../../client/db" }
sc-offchain = { version = "2.0.0-rc4", path = "../../../client/offchain" }
sc-rpc = { version = "2.0.0-rc4", path = "../../../client/rpc" }
sc-basic-authorship = { version = "0.8.0-rc4", path = "../../../client/basic-authorship" }
sc-service = { version = "0.8.0-rc4", default-features = false, path = "../../../client/service" }
sc-tracing = { version = "2.0.0-rc4", path = "../../../client/tracing" }
sc-telemetry = { version = "2.0.0-rc4", path = "../../../client/telemetry" }
sc-authority-discovery = { version = "0.8.0-rc4", path = "../../../client/authority-discovery" }
# frame dependencies
pallet-indices = { version = "2.0.0-rc3", path = "../../../frame/indices" }
pallet-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/timestamp" }
pallet-contracts = { version = "2.0.0-rc3", path = "../../../frame/contracts" }
frame-system = { version = "2.0.0-rc3", path = "../../../frame/system" }
pallet-balances = { version = "2.0.0-rc3", path = "../../../frame/balances" }
pallet-transaction-payment = { version = "2.0.0-rc3", path = "../../../frame/transaction-payment" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/support" }
pallet-im-online = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/im-online" }
pallet-authority-discovery = { version = "2.0.0-rc3", path = "../../../frame/authority-discovery" }
pallet-staking = { version = "2.0.0-rc3", path = "../../../frame/staking" }
pallet-grandpa = { version = "2.0.0-rc3", path = "../../../frame/grandpa" }
pallet-indices = { version = "2.0.0-rc4", path = "../../../frame/indices" }
pallet-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/timestamp" }
pallet-contracts = { version = "2.0.0-rc4", path = "../../../frame/contracts" }
frame-system = { version = "2.0.0-rc4", path = "../../../frame/system" }
pallet-balances = { version = "2.0.0-rc4", path = "../../../frame/balances" }
pallet-transaction-payment = { version = "2.0.0-rc4", path = "../../../frame/transaction-payment" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/support" }
pallet-im-online = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/im-online" }
pallet-authority-discovery = { version = "2.0.0-rc4", path = "../../../frame/authority-discovery" }
pallet-staking = { version = "2.0.0-rc4", path = "../../../frame/staking" }
pallet-grandpa = { version = "2.0.0-rc4", path = "../../../frame/grandpa" }
# node-specific dependencies
node-runtime = { version = "2.0.0-rc3", path = "../runtime" }
node-rpc = { version = "2.0.0-rc3", path = "../rpc" }
node-primitives = { version = "2.0.0-rc3", path = "../primitives" }
node-executor = { version = "2.0.0-rc3", path = "../executor" }
node-runtime = { version = "2.0.0-rc4", path = "../runtime" }
node-rpc = { version = "2.0.0-rc4", path = "../rpc" }
node-primitives = { version = "2.0.0-rc4", path = "../primitives" }
node-executor = { version = "2.0.0-rc4", path = "../executor" }
# CLI-specific dependencies
sc-cli = { version = "0.8.0-rc3", optional = true, path = "../../../client/cli" }
frame-benchmarking-cli = { version = "2.0.0-rc3", optional = true, path = "../../../utils/frame/benchmarking-cli" }
node-inspect = { version = "0.8.0-rc3", optional = true, path = "../inspect" }
sc-cli = { version = "0.8.0-rc4", optional = true, path = "../../../client/cli" }
frame-benchmarking-cli = { version = "2.0.0-rc4", optional = true, path = "../../../utils/frame/benchmarking-cli" }
node-inspect = { version = "0.8.0-rc4", optional = true, path = "../inspect" }
# WASM-specific dependencies
wasm-bindgen = { version = "0.2.57", optional = true }
wasm-bindgen-futures = { version = "0.4.7", optional = true }
browser-utils = { package = "substrate-browser-utils", path = "../../../utils/browser", optional = true, version = "0.8.0-rc3"}
browser-utils = { package = "substrate-browser-utils", path = "../../../utils/browser", optional = true, version = "0.8.0-rc4"}
[target.'cfg(target_arch="x86_64")'.dependencies]
node-executor = { version = "2.0.0-rc3", path = "../executor", features = [ "wasmtime" ] }
sc-cli = { version = "0.8.0-rc3", optional = true, path = "../../../client/cli", features = [ "wasmtime" ] }
sc-service = { version = "0.8.0-rc3", default-features = false, path = "../../../client/service", features = [ "wasmtime" ] }
node-executor = { version = "2.0.0-rc4", path = "../executor", features = [ "wasmtime" ] }
sc-cli = { version = "0.8.0-rc4", optional = true, path = "../../../client/cli", features = [ "wasmtime" ] }
sc-service = { version = "0.8.0-rc4", default-features = false, path = "../../../client/service", features = [ "wasmtime" ] }
[dev-dependencies]
sc-keystore = { version = "2.0.0-rc3", path = "../../../client/keystore" }
sc-consensus = { version = "0.8.0-rc3", path = "../../../client/consensus/common" }
sc-consensus-babe = { version = "0.8.0-rc3", features = ["test-helpers"], path = "../../../client/consensus/babe" }
sc-consensus-epochs = { version = "0.8.0-rc3", path = "../../../client/consensus/epochs" }
sc-service-test = { version = "2.0.0-rc3", path = "../../../client/service/test" }
sc-keystore = { version = "2.0.0-rc4", path = "../../../client/keystore" }
sc-consensus = { version = "0.8.0-rc4", path = "../../../client/consensus/common" }
sc-consensus-babe = { version = "0.8.0-rc4", features = ["test-helpers"], path = "../../../client/consensus/babe" }
sc-consensus-epochs = { version = "0.8.0-rc4", path = "../../../client/consensus/epochs" }
sc-service-test = { version = "2.0.0-rc4", path = "../../../client/service/test" }
futures = "0.3.4"
tempfile = "3.1.0"
assert_cmd = "1.0"
@@ -126,12 +126,12 @@ platforms = "0.2.1"
[build-dependencies]
structopt = { version = "0.3.8", optional = true }
node-inspect = { version = "0.8.0-rc3", optional = true, path = "../inspect" }
frame-benchmarking-cli = { version = "2.0.0-rc3", optional = true, path = "../../../utils/frame/benchmarking-cli" }
substrate-build-script-utils = { version = "2.0.0-rc3", optional = true, path = "../../../utils/build-script-utils" }
node-inspect = { version = "0.8.0-rc4", optional = true, path = "../inspect" }
frame-benchmarking-cli = { version = "2.0.0-rc4", optional = true, path = "../../../utils/frame/benchmarking-cli" }
substrate-build-script-utils = { version = "2.0.0-rc4", optional = true, path = "../../../utils/build-script-utils" }
[build-dependencies.sc-cli]
version = "0.8.0-rc3"
version = "0.8.0-rc4"
package = "sc-cli"
path = "../../../client/cli"
optional = true
+25 -25
View File
@@ -1,6 +1,6 @@
[package]
name = "node-executor"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate node implementation in Rust."
edition = "2018"
@@ -13,34 +13,34 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1" }
node-primitives = { version = "2.0.0-rc3", path = "../primitives" }
node-runtime = { version = "2.0.0-rc3", path = "../runtime" }
sc-executor = { version = "0.8.0-rc3", path = "../../../client/executor" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-io = { version = "2.0.0-rc3", path = "../../../primitives/io" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../../primitives/state-machine" }
sp-trie = { version = "2.0.0-rc3", path = "../../../primitives/trie" }
node-primitives = { version = "2.0.0-rc4", path = "../primitives" }
node-runtime = { version = "2.0.0-rc4", path = "../runtime" }
sc-executor = { version = "0.8.0-rc4", path = "../../../client/executor" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-io = { version = "2.0.0-rc4", path = "../../../primitives/io" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../../primitives/state-machine" }
sp-trie = { version = "2.0.0-rc4", path = "../../../primitives/trie" }
trie-root = "0.16.0"
frame-benchmarking = { version = "2.0.0-rc3", path = "../../../frame/benchmarking" }
frame-benchmarking = { version = "2.0.0-rc4", path = "../../../frame/benchmarking" }
[dev-dependencies]
criterion = "0.3.0"
frame-support = { version = "2.0.0-rc3", path = "../../../frame/support" }
frame-system = { version = "2.0.0-rc3", path = "../../../frame/system" }
node-testing = { version = "2.0.0-rc3", path = "../testing" }
pallet-balances = { version = "2.0.0-rc3", path = "../../../frame/balances" }
pallet-contracts = { version = "2.0.0-rc3", path = "../../../frame/contracts" }
pallet-grandpa = { version = "2.0.0-rc3", path = "../../../frame/grandpa" }
pallet-im-online = { version = "2.0.0-rc3", path = "../../../frame/im-online" }
pallet-indices = { version = "2.0.0-rc3", path = "../../../frame/indices" }
pallet-session = { version = "2.0.0-rc3", path = "../../../frame/session" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../../../frame/timestamp" }
pallet-transaction-payment = { version = "2.0.0-rc3", path = "../../../frame/transaction-payment" }
pallet-treasury = { version = "2.0.0-rc3", path = "../../../frame/treasury" }
sp-application-crypto = { version = "2.0.0-rc3", path = "../../../primitives/application-crypto" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-externalities = { version = "0.8.0-rc3", path = "../../../primitives/externalities" }
substrate-test-client = { version = "2.0.0-rc3", path = "../../../test-utils/client" }
frame-support = { version = "2.0.0-rc4", path = "../../../frame/support" }
frame-system = { version = "2.0.0-rc4", path = "../../../frame/system" }
node-testing = { version = "2.0.0-rc4", path = "../testing" }
pallet-balances = { version = "2.0.0-rc4", path = "../../../frame/balances" }
pallet-contracts = { version = "2.0.0-rc4", path = "../../../frame/contracts" }
pallet-grandpa = { version = "2.0.0-rc4", path = "../../../frame/grandpa" }
pallet-im-online = { version = "2.0.0-rc4", path = "../../../frame/im-online" }
pallet-indices = { version = "2.0.0-rc4", path = "../../../frame/indices" }
pallet-session = { version = "2.0.0-rc4", path = "../../../frame/session" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../../../frame/timestamp" }
pallet-transaction-payment = { version = "2.0.0-rc4", path = "../../../frame/transaction-payment" }
pallet-treasury = { version = "2.0.0-rc4", path = "../../../frame/treasury" }
sp-application-crypto = { version = "2.0.0-rc4", path = "../../../primitives/application-crypto" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-externalities = { version = "0.8.0-rc4", path = "../../../primitives/externalities" }
substrate-test-client = { version = "2.0.0-rc4", path = "../../../test-utils/client" }
wabt = "0.9.2"
[features]
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "node-inspect"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -14,10 +14,10 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "1.3.1" }
derive_more = "0.99"
log = "0.4.8"
sc-cli = { version = "0.8.0-rc3", path = "../../../client/cli" }
sc-client-api = { version = "2.0.0-rc3", path = "../../../client/api" }
sc-service = { version = "0.8.0-rc3", default-features = false, path = "../../../client/service" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sc-cli = { version = "0.8.0-rc4", path = "../../../client/cli" }
sc-client-api = { version = "2.0.0-rc4", path = "../../../client/api" }
sc-service = { version = "0.8.0-rc4", default-features = false, path = "../../../client/service" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
structopt = "0.3.8"
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "node-primitives"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,13 +12,13 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/system" }
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/application-crypto" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/system" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/application-crypto" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
[dev-dependencies]
sp-serializer = { version = "2.0.0-rc3", path = "../../../primitives/serializer" }
sp-serializer = { version = "2.0.0-rc4", path = "../../../primitives/serializer" }
pretty_assertions = "0.6.1"
[features]
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "node-rpc-client"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -16,5 +16,5 @@ futures = "0.1.29"
hyper = "0.12.35"
jsonrpc-core-client = { version = "14.2.0", default-features = false, features = ["http"] }
log = "0.4.8"
node-primitives = { version = "2.0.0-rc3", path = "../primitives" }
sc-rpc = { version = "2.0.0-rc3", path = "../../../client/rpc" }
node-primitives = { version = "2.0.0-rc4", path = "../primitives" }
sc-rpc = { version = "2.0.0-rc4", path = "../../../client/rpc" }
+21 -21
View File
@@ -1,6 +1,6 @@
[package]
name = "node-rpc"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -11,24 +11,24 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0-rc3", path = "../../../client/api" }
sc-client-api = { version = "2.0.0-rc4", path = "../../../client/api" }
jsonrpc-core = "14.2.0"
node-primitives = { version = "2.0.0-rc3", path = "../primitives" }
node-runtime = { version = "2.0.0-rc3", path = "../runtime" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc3", path = "../../../primitives/api" }
pallet-contracts-rpc = { version = "0.8.0-rc3", path = "../../../frame/contracts/rpc/" }
pallet-transaction-payment-rpc = { version = "2.0.0-rc3", path = "../../../frame/transaction-payment/rpc/" }
substrate-frame-rpc-system = { version = "2.0.0-rc3", path = "../../../utils/frame/rpc/system" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../../primitives/transaction-pool" }
sc-consensus-babe = { version = "0.8.0-rc3", path = "../../../client/consensus/babe" }
sc-consensus-babe-rpc = { version = "0.8.0-rc3", path = "../../../client/consensus/babe/rpc" }
sp-consensus-babe = { version = "0.8.0-rc3", path = "../../../primitives/consensus/babe" }
sc-keystore = { version = "2.0.0-rc3", path = "../../../client/keystore" }
sc-consensus-epochs = { version = "0.8.0-rc3", path = "../../../client/consensus/epochs" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sc-finality-grandpa = { version = "0.8.0-rc3", path = "../../../client/finality-grandpa" }
sc-finality-grandpa-rpc = { version = "0.8.0-rc3", path = "../../../client/finality-grandpa/rpc" }
sc-rpc-api = { version = "0.8.0-rc3", path = "../../../client/rpc-api" }
sp-block-builder = { version = "2.0.0-rc3", path = "../../../primitives/block-builder" }
node-primitives = { version = "2.0.0-rc4", path = "../primitives" }
node-runtime = { version = "2.0.0-rc4", path = "../runtime" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
pallet-contracts-rpc = { version = "0.8.0-rc4", path = "../../../frame/contracts/rpc/" }
pallet-transaction-payment-rpc = { version = "2.0.0-rc4", path = "../../../frame/transaction-payment/rpc/" }
substrate-frame-rpc-system = { version = "2.0.0-rc4", path = "../../../utils/frame/rpc/system" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../../primitives/transaction-pool" }
sc-consensus-babe = { version = "0.8.0-rc4", path = "../../../client/consensus/babe" }
sc-consensus-babe-rpc = { version = "0.8.0-rc4", path = "../../../client/consensus/babe/rpc" }
sp-consensus-babe = { version = "0.8.0-rc4", path = "../../../primitives/consensus/babe" }
sc-keystore = { version = "2.0.0-rc4", path = "../../../client/keystore" }
sc-consensus-epochs = { version = "0.8.0-rc4", path = "../../../client/consensus/epochs" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sc-finality-grandpa = { version = "0.8.0-rc4", path = "../../../client/finality-grandpa" }
sc-finality-grandpa-rpc = { version = "0.8.0-rc4", path = "../../../client/finality-grandpa/rpc" }
sc-rpc-api = { version = "0.8.0-rc4", path = "../../../client/rpc-api" }
sp-block-builder = { version = "2.0.0-rc4", path = "../../../primitives/block-builder" }
+58 -58
View File
@@ -1,6 +1,6 @@
[package]
name = "node-runtime"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
@@ -21,70 +21,70 @@ static_assertions = "1.1.0"
hex-literal = { version = "0.2.1", optional = true }
# primitives
sp-authority-discovery = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/authority-discovery" }
sp-consensus-babe = { version = "0.8.0-rc3", default-features = false, path = "../../../primitives/consensus/babe" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-rc3"}
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/inherents" }
node-primitives = { version = "2.0.0-rc3", default-features = false, path = "../primitives" }
sp-offchain = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/offchain" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/std" }
sp-api = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/staking" }
sp-keyring = { version = "2.0.0-rc3", optional = true, path = "../../../primitives/keyring" }
sp-session = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/session" }
sp-transaction-pool = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/version" }
sp-authority-discovery = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/authority-discovery" }
sp-consensus-babe = { version = "0.8.0-rc4", default-features = false, path = "../../../primitives/consensus/babe" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-rc4"}
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/inherents" }
node-primitives = { version = "2.0.0-rc4", default-features = false, path = "../primitives" }
sp-offchain = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/offchain" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
sp-api = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/staking" }
sp-keyring = { version = "2.0.0-rc4", optional = true, path = "../../../primitives/keyring" }
sp-session = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/session" }
sp-transaction-pool = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/version" }
# frame dependencies
frame-executive = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/executive" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/benchmarking", optional = true }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/system" }
frame-system-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
frame-system-rpc-runtime-api = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
pallet-authority-discovery = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/authority-discovery" }
pallet-authorship = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/authorship" }
pallet-babe = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/babe" }
pallet-balances = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/balances" }
pallet-collective = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/collective" }
pallet-contracts = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/contracts" }
pallet-contracts-primitives = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/contracts/common/" }
pallet-contracts-rpc-runtime-api = { version = "0.8.0-rc3", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" }
pallet-democracy = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/democracy" }
pallet-elections-phragmen = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/elections-phragmen" }
pallet-finality-tracker = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/finality-tracker" }
pallet-grandpa = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/grandpa" }
pallet-im-online = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/im-online" }
pallet-indices = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/indices" }
pallet-identity = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/identity" }
pallet-membership = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/membership" }
pallet-multisig = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/multisig" }
pallet-offences = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/offences" }
pallet-offences-benchmarking = { version = "2.0.0-rc3", path = "../../../frame/offences/benchmarking", default-features = false, optional = true }
pallet-proxy = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/proxy" }
pallet-randomness-collective-flip = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/randomness-collective-flip" }
pallet-recovery = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/recovery" }
pallet-session = { version = "2.0.0-rc3", features = ["historical"], path = "../../../frame/session", default-features = false }
pallet-session-benchmarking = { version = "2.0.0-rc3", path = "../../../frame/session/benchmarking", default-features = false, optional = true }
pallet-staking = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/staking" }
pallet-staking-reward-curve = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/staking/reward-curve" }
pallet-scheduler = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/scheduler" }
pallet-society = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/society" }
pallet-sudo = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/sudo" }
pallet-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/timestamp" }
pallet-treasury = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/treasury" }
pallet-utility = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/utility" }
pallet-transaction-payment = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/transaction-payment" }
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
pallet-vesting = { version = "2.0.0-rc3", default-features = false, path = "../../../frame/vesting" }
frame-executive = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/executive" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/benchmarking", optional = true }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/system" }
frame-system-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
frame-system-rpc-runtime-api = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
pallet-authority-discovery = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/authority-discovery" }
pallet-authorship = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/authorship" }
pallet-babe = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/babe" }
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/balances" }
pallet-collective = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/collective" }
pallet-contracts = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/contracts" }
pallet-contracts-primitives = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/contracts/common/" }
pallet-contracts-rpc-runtime-api = { version = "0.8.0-rc4", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" }
pallet-democracy = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/democracy" }
pallet-elections-phragmen = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/elections-phragmen" }
pallet-finality-tracker = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/finality-tracker" }
pallet-grandpa = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/grandpa" }
pallet-im-online = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/im-online" }
pallet-indices = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/indices" }
pallet-identity = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/identity" }
pallet-membership = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/membership" }
pallet-multisig = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/multisig" }
pallet-offences = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/offences" }
pallet-offences-benchmarking = { version = "2.0.0-rc4", path = "../../../frame/offences/benchmarking", default-features = false, optional = true }
pallet-proxy = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/proxy" }
pallet-randomness-collective-flip = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/randomness-collective-flip" }
pallet-recovery = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/recovery" }
pallet-session = { version = "2.0.0-rc4", features = ["historical"], path = "../../../frame/session", default-features = false }
pallet-session-benchmarking = { version = "2.0.0-rc4", path = "../../../frame/session/benchmarking", default-features = false, optional = true }
pallet-staking = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/staking" }
pallet-staking-reward-curve = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/staking/reward-curve" }
pallet-scheduler = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/scheduler" }
pallet-society = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/society" }
pallet-sudo = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/sudo" }
pallet-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/timestamp" }
pallet-treasury = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/treasury" }
pallet-utility = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/utility" }
pallet-transaction-payment = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/transaction-payment" }
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
pallet-vesting = { version = "2.0.0-rc4", default-features = false, path = "../../../frame/vesting" }
[build-dependencies]
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
[dev-dependencies]
sp-io = { version = "2.0.0-rc3", path = "../../../primitives/io" }
sp-io = { version = "2.0.0-rc4", path = "../../../primitives/io" }
[features]
default = ["std"]
+34 -34
View File
@@ -1,6 +1,6 @@
[package]
name = "node-testing"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Test utilities for Substrate node."
edition = "2018"
@@ -13,40 +13,40 @@ publish = true
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
pallet-balances = { version = "2.0.0-rc3", path = "../../../frame/balances" }
sc-service = { version = "0.8.0-rc3", features = ["test-helpers", "db"], path = "../../../client/service" }
sc-client-db = { version = "0.8.0-rc3", path = "../../../client/db/", features = ["kvdb-rocksdb", "parity-db"] }
sc-client-api = { version = "2.0.0-rc3", path = "../../../client/api/" }
pallet-balances = { version = "2.0.0-rc4", path = "../../../frame/balances" }
sc-service = { version = "0.8.0-rc4", features = ["test-helpers", "db"], path = "../../../client/service" }
sc-client-db = { version = "0.8.0-rc4", path = "../../../client/db/", features = ["kvdb-rocksdb", "parity-db"] }
sc-client-api = { version = "2.0.0-rc4", path = "../../../client/api/" }
codec = { package = "parity-scale-codec", version = "1.3.1" }
pallet-contracts = { version = "2.0.0-rc3", path = "../../../frame/contracts" }
pallet-grandpa = { version = "2.0.0-rc3", path = "../../../frame/grandpa" }
pallet-indices = { version = "2.0.0-rc3", path = "../../../frame/indices" }
sp-keyring = { version = "2.0.0-rc3", path = "../../../primitives/keyring" }
node-executor = { version = "2.0.0-rc3", path = "../executor" }
node-primitives = { version = "2.0.0-rc3", path = "../primitives" }
node-runtime = { version = "2.0.0-rc3", path = "../runtime" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-io = { version = "2.0.0-rc3", path = "../../../primitives/io" }
frame-support = { version = "2.0.0-rc3", path = "../../../frame/support" }
pallet-session = { version = "2.0.0-rc3", path = "../../../frame/session" }
pallet-society = { version = "2.0.0-rc3", path = "../../../frame/society" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
pallet-staking = { version = "2.0.0-rc3", path = "../../../frame/staking" }
sc-executor = { version = "0.8.0-rc3", path = "../../../client/executor", features = ["wasmtime"] }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
frame-system = { version = "2.0.0-rc3", path = "../../../frame/system" }
substrate-test-client = { version = "2.0.0-rc3", path = "../../../test-utils/client" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../../../frame/timestamp" }
pallet-transaction-payment = { version = "2.0.0-rc3", path = "../../../frame/transaction-payment" }
pallet-treasury = { version = "2.0.0-rc3", path = "../../../frame/treasury" }
pallet-contracts = { version = "2.0.0-rc4", path = "../../../frame/contracts" }
pallet-grandpa = { version = "2.0.0-rc4", path = "../../../frame/grandpa" }
pallet-indices = { version = "2.0.0-rc4", path = "../../../frame/indices" }
sp-keyring = { version = "2.0.0-rc4", path = "../../../primitives/keyring" }
node-executor = { version = "2.0.0-rc4", path = "../executor" }
node-primitives = { version = "2.0.0-rc4", path = "../primitives" }
node-runtime = { version = "2.0.0-rc4", path = "../runtime" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-io = { version = "2.0.0-rc4", path = "../../../primitives/io" }
frame-support = { version = "2.0.0-rc4", path = "../../../frame/support" }
pallet-session = { version = "2.0.0-rc4", path = "../../../frame/session" }
pallet-society = { version = "2.0.0-rc4", path = "../../../frame/society" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
pallet-staking = { version = "2.0.0-rc4", path = "../../../frame/staking" }
sc-executor = { version = "0.8.0-rc4", path = "../../../client/executor", features = ["wasmtime"] }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
frame-system = { version = "2.0.0-rc4", path = "../../../frame/system" }
substrate-test-client = { version = "2.0.0-rc4", path = "../../../test-utils/client" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../../../frame/timestamp" }
pallet-transaction-payment = { version = "2.0.0-rc4", path = "../../../frame/transaction-payment" }
pallet-treasury = { version = "2.0.0-rc4", path = "../../../frame/treasury" }
wabt = "0.9.2"
sp-api = { version = "2.0.0-rc3", path = "../../../primitives/api" }
sp-finality-tracker = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/finality-tracker" }
sp-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/timestamp" }
sp-block-builder = { version = "2.0.0-rc3", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0-rc3", path = "../../../client/block-builder" }
sp-inherents = { version = "2.0.0-rc3", path = "../../../primitives/inherents" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
sp-finality-tracker = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/finality-tracker" }
sp-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/timestamp" }
sp-block-builder = { version = "2.0.0-rc4", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0-rc4", path = "../../../client/block-builder" }
sp-inherents = { version = "2.0.0-rc4", path = "../../../primitives/inherents" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
log = "0.4.8"
tempfile = "3.1.0"
fs_extra = "1"
@@ -54,4 +54,4 @@ futures = "0.3.1"
[dev-dependencies]
criterion = "0.3.0"
sc-cli = { version = "0.8.0-rc3", path = "../../../client/cli" }
sc-cli = { version = "0.8.0-rc4", path = "../../../client/cli" }
@@ -1,6 +1,6 @@
[package]
name = "chain-spec-builder"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
@@ -13,9 +13,9 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
ansi_term = "0.12.1"
sc-keystore = { version = "2.0.0-rc3", path = "../../../client/keystore" }
sc-chain-spec = { version = "2.0.0-rc3", path = "../../../client/chain-spec" }
node-cli = { version = "2.0.0-rc3", path = "../../node/cli" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sc-keystore = { version = "2.0.0-rc4", path = "../../../client/keystore" }
sc-chain-spec = { version = "2.0.0-rc4", path = "../../../client/chain-spec" }
node-cli = { version = "2.0.0-rc4", path = "../../node/cli" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
rand = "0.7.2"
structopt = "0.3.8"
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "subkey"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -12,10 +12,10 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
futures = "0.1.29"
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
node-runtime = { version = "2.0.0-rc3", path = "../../node/runtime" }
node-primitives = { version = "2.0.0-rc3", path = "../../node/primitives" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
node-runtime = { version = "2.0.0-rc4", path = "../../node/runtime" }
node-primitives = { version = "2.0.0-rc4", path = "../../node/primitives" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
rand = "0.7.2"
clap = "2.33.0"
tiny-bip39 = "0.7"
@@ -23,14 +23,14 @@ substrate-bip39 = "0.4.1"
hex = "0.4.0"
hex-literal = "0.2.1"
codec = { package = "parity-scale-codec", version = "1.3.1" }
frame-system = { version = "2.0.0-rc3", path = "../../../frame/system" }
pallet-balances = { version = "2.0.0-rc3", path = "../../../frame/balances" }
pallet-transaction-payment = { version = "2.0.0-rc3", path = "../../../frame/transaction-payment" }
pallet-grandpa = { version = "2.0.0-rc3", path = "../../../frame/grandpa" }
frame-system = { version = "2.0.0-rc4", path = "../../../frame/system" }
pallet-balances = { version = "2.0.0-rc4", path = "../../../frame/balances" }
pallet-transaction-payment = { version = "2.0.0-rc4", path = "../../../frame/transaction-payment" }
pallet-grandpa = { version = "2.0.0-rc4", path = "../../../frame/grandpa" }
rpassword = "4.0.1"
itertools = "0.8.2"
derive_more = { version = "0.99.2" }
sc-rpc = { version = "2.0.0-rc3", path = "../../../client/rpc" }
sc-rpc = { version = "2.0.0-rc4", path = "../../../client/rpc" }
jsonrpc-core-client = { version = "14.2.0", features = ["http"] }
hyper = "0.12.35"
libp2p = { version = "0.19.1", default-features = false }
+22 -22
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-client-api"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -14,36 +14,36 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-consensus = { version = "0.8.0-rc3", path = "../../primitives/consensus/common" }
sp-consensus = { version = "0.8.0-rc4", path = "../../primitives/consensus/common" }
derive_more = { version = "0.99.2" }
sc-executor = { version = "0.8.0-rc3", path = "../executor" }
sp-externalities = { version = "0.8.0-rc3", path = "../../primitives/externalities" }
sc-executor = { version = "0.8.0-rc4", path = "../executor" }
sp-externalities = { version = "0.8.0-rc4", path = "../../primitives/externalities" }
fnv = { version = "1.0.6" }
futures = { version = "0.3.1" }
hash-db = { version = "0.15.2", default-features = false }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
hex-literal = { version = "0.2.1" }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
sp-keyring = { version = "2.0.0-rc3", path = "../../primitives/keyring" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
sp-keyring = { version = "2.0.0-rc4", path = "../../primitives/keyring" }
kvdb = "0.6.0"
log = { version = "0.4.8" }
parking_lot = "0.10.0"
lazy_static = "1.4.0"
sp-database = { version = "2.0.0-rc3", path = "../../primitives/database" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-version = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/version" }
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sp-utils = { version = "2.0.0-rc3", path = "../../primitives/utils" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../primitives/state-machine" }
sc-telemetry = { version = "2.0.0-rc3", path = "../telemetry" }
sp-trie = { version = "2.0.0-rc3", path = "../../primitives/trie" }
sp-storage = { version = "2.0.0-rc3", path = "../../primitives/storage" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../primitives/transaction-pool" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0-rc3", path = "../../utils/prometheus" }
sp-database = { version = "2.0.0-rc4", path = "../../primitives/database" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-version = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/version" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
sp-utils = { version = "2.0.0-rc4", path = "../../primitives/utils" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../primitives/state-machine" }
sc-telemetry = { version = "2.0.0-rc4", path = "../telemetry" }
sp-trie = { version = "2.0.0-rc4", path = "../../primitives/trie" }
sp-storage = { version = "2.0.0-rc4", path = "../../primitives/storage" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../primitives/transaction-pool" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0-rc4", path = "../../utils/prometheus" }
[dev-dependencies]
kvdb-memorydb = "0.6.0"
sp-test-primitives = { version = "2.0.0-rc3", path = "../../primitives/test-primitives" }
substrate-test-runtime = { version = "2.0.0-rc3", path = "../../test-utils/runtime" }
sp-test-primitives = { version = "2.0.0-rc4", path = "../../primitives/test-primitives" }
substrate-test-runtime = { version = "2.0.0-rc4", path = "../../test-utils/runtime" }
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-authority-discovery"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
@@ -23,21 +23,21 @@ futures = "0.3.4"
futures-timer = "3.0.1"
libp2p = { version = "0.19.1", default-features = false, features = ["kad"] }
log = "0.4.8"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-rc3"}
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-rc4"}
prost = "0.6.1"
rand = "0.7.2"
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sc-keystore = { version = "2.0.0-rc3", path = "../keystore" }
sc-network = { version = "0.8.0-rc3", path = "../network" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sc-keystore = { version = "2.0.0-rc4", path = "../keystore" }
sc-network = { version = "0.8.0-rc4", path = "../network" }
serde_json = "1.0.41"
sp-authority-discovery = { version = "2.0.0-rc3", path = "../../primitives/authority-discovery" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sp-authority-discovery = { version = "2.0.0-rc4", path = "../../primitives/authority-discovery" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
[dev-dependencies]
env_logger = "0.7.0"
quickcheck = "0.9.0"
sc-peerset = { version = "2.0.0-rc3", path = "../peerset" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client"}
sc-peerset = { version = "2.0.0-rc4", path = "../peerset" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client"}
+15 -15
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-basic-authorship"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -16,21 +16,21 @@ codec = { package = "parity-scale-codec", version = "1.3.1" }
futures = "0.3.4"
futures-timer = "3.0.1"
log = "0.4.8"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-rc3"}
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sp-consensus = { version = "0.8.0-rc3", path = "../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc3", path = "../../primitives/inherents" }
sc-telemetry = { version = "2.0.0-rc3", path = "../telemetry" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../primitives/transaction-pool" }
sc-block-builder = { version = "0.8.0-rc3", path = "../block-builder" }
sc-proposer-metrics = { version = "0.8.0-rc3", path = "../proposer-metrics" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-rc4"}
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sp-consensus = { version = "0.8.0-rc4", path = "../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc4", path = "../../primitives/inherents" }
sc-telemetry = { version = "2.0.0-rc4", path = "../telemetry" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../primitives/transaction-pool" }
sc-block-builder = { version = "0.8.0-rc4", path = "../block-builder" }
sc-proposer-metrics = { version = "0.8.0-rc4", path = "../proposer-metrics" }
tokio-executor = { version = "0.2.0-alpha.6", features = ["blocking"] }
[dev-dependencies]
sc-transaction-pool = { version = "2.0.0-rc3", path = "../../client/transaction-pool" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client" }
sc-transaction-pool = { version = "2.0.0-rc4", path = "../../client/transaction-pool" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client" }
parking_lot = "0.10.0"
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-block-builder"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -13,16 +13,16 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-state-machine = { version = "0.8.0-rc3", path = "../../primitives/state-machine" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sp-consensus = { version = "0.8.0-rc3", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-block-builder = { version = "2.0.0-rc3", path = "../../primitives/block-builder" }
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../primitives/state-machine" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
sp-consensus = { version = "0.8.0-rc4", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-block-builder = { version = "2.0.0-rc4", path = "../../primitives/block-builder" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
[dev-dependencies]
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
sp-trie = { version = "2.0.0-rc3", path = "../../primitives/trie" }
sp-trie = { version = "2.0.0-rc4", path = "../../primitives/trie" }
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-chain-spec"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -12,12 +12,12 @@ description = "Substrate chain configurations."
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-chain-spec-derive = { version = "2.0.0-rc3", path = "./derive" }
sc-chain-spec-derive = { version = "2.0.0-rc4", path = "./derive" }
impl-trait-for-tuples = "0.1.3"
sc-network = { version = "0.8.0-rc3", path = "../network" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sc-network = { version = "0.8.0-rc4", path = "../network" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.41"
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-chain-spec = { version = "2.0.0-rc3", path = "../../primitives/chain-spec" }
sc-telemetry = { version = "2.0.0-rc3", path = "../telemetry" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-chain-spec = { version = "2.0.0-rc4", path = "../../primitives/chain-spec" }
sc-telemetry = { version = "2.0.0-rc4", path = "../telemetry" }
@@ -1,6 +1,6 @@
[package]
name = "sc-chain-spec-derive"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
+16 -16
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-cli"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate CLI interface."
edition = "2018"
@@ -24,23 +24,23 @@ tokio = { version = "0.2.9", features = [ "signal", "rt-core", "rt-threaded" ] }
futures = "0.3.4"
fdlimit = "0.1.4"
serde_json = "1.0.41"
sc-informant = { version = "0.8.0-rc3", path = "../informant" }
sp-panic-handler = { version = "2.0.0-rc3", path = "../../primitives/panic-handler" }
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sc-network = { version = "0.8.0-rc3", path = "../network" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc3", path = "../../primitives/utils" }
sp-version = { version = "2.0.0-rc3", path = "../../primitives/version" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sc-service = { version = "0.8.0-rc3", default-features = false, path = "../service" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../primitives/state-machine" }
sc-telemetry = { version = "2.0.0-rc3", path = "../telemetry" }
substrate-prometheus-endpoint = { path = "../../utils/prometheus" , version = "0.8.0-rc3"}
sp-keyring = { version = "2.0.0-rc3", path = "../../primitives/keyring" }
sc-informant = { version = "0.8.0-rc4", path = "../informant" }
sp-panic-handler = { version = "2.0.0-rc4", path = "../../primitives/panic-handler" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sc-network = { version = "0.8.0-rc4", path = "../network" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc4", path = "../../primitives/utils" }
sp-version = { version = "2.0.0-rc4", path = "../../primitives/version" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sc-service = { version = "0.8.0-rc4", default-features = false, path = "../service" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../primitives/state-machine" }
sc-telemetry = { version = "2.0.0-rc4", path = "../telemetry" }
substrate-prometheus-endpoint = { path = "../../utils/prometheus" , version = "0.8.0-rc4"}
sp-keyring = { version = "2.0.0-rc4", path = "../../primitives/keyring" }
names = "0.11.0"
structopt = "0.3.8"
sc-tracing = { version = "2.0.0-rc3", path = "../tracing" }
sc-tracing = { version = "2.0.0-rc4", path = "../tracing" }
chrono = "0.4.10"
parity-util-mem = { version = "0.6.1", default-features = false, features = ["primitive-types"] }
+25 -25
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-aura"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Aura consensus algorithm for substrate"
edition = "2018"
@@ -12,37 +12,37 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc3", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8.0-rc3", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0-rc3", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0-rc3", path = "../../../client/block-builder" }
sc-client-api = { version = "2.0.0-rc3", path = "../../api" }
sp-application-crypto = { version = "2.0.0-rc4", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8.0-rc4", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0-rc4", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0-rc4", path = "../../../client/block-builder" }
sc-client-api = { version = "2.0.0-rc4", path = "../../api" }
codec = { package = "parity-scale-codec", version = "1.3.1" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
derive_more = "0.99.2"
futures = "0.3.4"
futures-timer = "3.0.1"
sp-inherents = { version = "2.0.0-rc3", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0-rc3", path = "../../keystore" }
sp-inherents = { version = "2.0.0-rc4", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0-rc4", path = "../../keystore" }
log = "0.4.8"
parking_lot = "0.10.0"
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-io = { version = "2.0.0-rc3", path = "../../../primitives/io" }
sp-version = { version = "2.0.0-rc3", path = "../../../primitives/version" }
sc-consensus-slots = { version = "0.8.0-rc3", path = "../slots" }
sp-api = { version = "2.0.0-rc3", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-rc3", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-rc3", path = "../../telemetry" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc3"}
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-io = { version = "2.0.0-rc4", path = "../../../primitives/io" }
sp-version = { version = "2.0.0-rc4", path = "../../../primitives/version" }
sc-consensus-slots = { version = "0.8.0-rc4", path = "../slots" }
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-rc4", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-rc4", path = "../../telemetry" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc4"}
[dev-dependencies]
sp-keyring = { version = "2.0.0-rc3", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-rc3", path = "../../executor" }
sc-network = { version = "0.8.0-rc3", path = "../../network" }
sc-network-test = { version = "0.8.0-rc3", path = "../../network/test" }
sc-service = { version = "0.8.0-rc3", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0-rc4", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-rc4", path = "../../executor" }
sc-network = { version = "0.8.0-rc4", path = "../../network" }
sc-network-test = { version = "0.8.0-rc4", path = "../../network/test" }
sc-service = { version = "0.8.0-rc4", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../../test-utils/runtime/client" }
env_logger = "0.7.0"
tempfile = "3.1.0"
+29 -29
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-babe"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "BABE consensus algorithm for substrate"
edition = "2018"
@@ -14,31 +14,31 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
sp-consensus-babe = { version = "0.8.0-rc3", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc3", path = "../../../primitives/application-crypto" }
sp-consensus-babe = { version = "0.8.0-rc4", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc4", path = "../../../primitives/application-crypto" }
num-bigint = "0.2.3"
num-rational = "0.2.2"
num-traits = "0.2.8"
serde = { version = "1.0.104", features = ["derive"] }
sp-version = { version = "2.0.0-rc3", path = "../../../primitives/version" }
sp-io = { version = "2.0.0-rc3", path = "../../../primitives/io" }
sp-inherents = { version = "2.0.0-rc3", path = "../../../primitives/inherents" }
sp-timestamp = { version = "2.0.0-rc3", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-rc3", path = "../../telemetry" }
sc-keystore = { version = "2.0.0-rc3", path = "../../keystore" }
sc-client-api = { version = "2.0.0-rc3", path = "../../api" }
sc-consensus-epochs = { version = "0.8.0-rc3", path = "../epochs" }
sp-api = { version = "2.0.0-rc3", path = "../../../primitives/api" }
sp-block-builder = { version = "2.0.0-rc3", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sp-consensus-vrf = { version = "0.8.0-rc3", path = "../../../primitives/consensus/vrf" }
sc-consensus-uncles = { version = "0.8.0-rc3", path = "../uncles" }
sc-consensus-slots = { version = "0.8.0-rc3", path = "../slots" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
fork-tree = { version = "2.0.0-rc3", path = "../../../utils/fork-tree" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc3"}
sp-version = { version = "2.0.0-rc4", path = "../../../primitives/version" }
sp-io = { version = "2.0.0-rc4", path = "../../../primitives/io" }
sp-inherents = { version = "2.0.0-rc4", path = "../../../primitives/inherents" }
sp-timestamp = { version = "2.0.0-rc4", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-rc4", path = "../../telemetry" }
sc-keystore = { version = "2.0.0-rc4", path = "../../keystore" }
sc-client-api = { version = "2.0.0-rc4", path = "../../api" }
sc-consensus-epochs = { version = "0.8.0-rc4", path = "../epochs" }
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
sp-block-builder = { version = "2.0.0-rc4", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
sp-consensus-vrf = { version = "0.8.0-rc4", path = "../../../primitives/consensus/vrf" }
sc-consensus-uncles = { version = "0.8.0-rc4", path = "../uncles" }
sc-consensus-slots = { version = "0.8.0-rc4", path = "../slots" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
fork-tree = { version = "2.0.0-rc4", path = "../../../utils/fork-tree" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc4"}
futures = "0.3.4"
futures-timer = "3.0.1"
parking_lot = "0.10.0"
@@ -50,13 +50,13 @@ pdqselect = "0.1.0"
derive_more = "0.99.2"
[dev-dependencies]
sp-keyring = { version = "2.0.0-rc3", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-rc3", path = "../../executor" }
sc-network = { version = "0.8.0-rc3", path = "../../network" }
sc-network-test = { version = "0.8.0-rc3", path = "../../network/test" }
sc-service = { version = "0.8.0-rc3", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0-rc3", path = "../../block-builder" }
sp-keyring = { version = "2.0.0-rc4", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-rc4", path = "../../executor" }
sc-network = { version = "0.8.0-rc4", path = "../../network" }
sc-network-test = { version = "0.8.0-rc4", path = "../../network/test" }
sc-service = { version = "0.8.0-rc4", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0-rc4", path = "../../block-builder" }
env_logger = "0.7.0"
rand_chacha = "0.2.2"
tempfile = "3.1.0"
+15 -15
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-babe-rpc"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "RPC extensions for the BABE consensus algorithm"
edition = "2018"
@@ -12,27 +12,27 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-consensus-babe = { version = "0.8.0-rc3", path = "../" }
sc-rpc-api = { version = "0.8.0-rc3", path = "../../../rpc-api" }
sc-consensus-babe = { version = "0.8.0-rc4", path = "../" }
sc-rpc-api = { version = "0.8.0-rc4", path = "../../../rpc-api" }
jsonrpc-core = "14.2.0"
jsonrpc-core-client = "14.2.0"
jsonrpc-derive = "14.2.1"
sp-consensus-babe = { version = "0.8.0-rc3", path = "../../../../primitives/consensus/babe" }
sp-consensus-babe = { version = "0.8.0-rc4", path = "../../../../primitives/consensus/babe" }
serde = { version = "1.0.104", features=["derive"] }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8.0-rc3", path = "../../epochs" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8.0-rc4", path = "../../epochs" }
futures = { version = "0.3.4", features = ["compat"] }
derive_more = "0.99.2"
sp-api = { version = "2.0.0-rc3", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc3", path = "../../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc3", path = "../../../../primitives/application-crypto" }
sc-keystore = { version = "2.0.0-rc3", path = "../../../keystore" }
sp-api = { version = "2.0.0-rc4", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc4", path = "../../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc4", path = "../../../../primitives/application-crypto" }
sc-keystore = { version = "2.0.0-rc4", path = "../../../keystore" }
[dev-dependencies]
sc-consensus = { version = "0.8.0-rc3", path = "../../../consensus/common" }
sc-consensus = { version = "0.8.0-rc4", path = "../../../consensus/common" }
serde_json = "1.0.50"
sp-keyring = { version = "2.0.0-rc3", path = "../../../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0-rc4", path = "../../../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../../../test-utils/runtime/client" }
tempfile = "3.1.0"
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -12,7 +12,7 @@ description = "Collection of common consensus specific imlementations for Substr
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0-rc3", path = "../../api" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sc-client-api = { version = "2.0.0-rc4", path = "../../api" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-epochs"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic epochs-based utilities for consensus"
edition = "2018"
@@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
parking_lot = "0.10.0"
fork-tree = { version = "2.0.0-rc3", path = "../../../utils/fork-tree" }
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-rc3"}
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sc-client-api = { path = "../../api" , version = "2.0.0-rc3"}
fork-tree = { version = "2.0.0-rc4", path = "../../../utils/fork-tree" }
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-rc4"}
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sc-client-api = { path = "../../api" , version = "2.0.0-rc4"}
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-manual-seal"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Manual sealing engine for Substrate"
edition = "2018"
@@ -22,20 +22,20 @@ parking_lot = "0.10.0"
serde = { version = "1.0", features=["derive"] }
assert_matches = "1.3.0"
sc-client-api = { path = "../../../client/api", version = "2.0.0-rc3" }
sc-transaction-pool = { path = "../../transaction-pool", version = "2.0.0-rc3" }
sp-blockchain = { path = "../../../primitives/blockchain", version = "2.0.0-rc3" }
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common", version = "0.8.0-rc3" }
sp-inherents = { path = "../../../primitives/inherents", version = "2.0.0-rc3" }
sp-runtime = { path = "../../../primitives/runtime", version = "2.0.0-rc3" }
sp-core = { path = "../../../primitives/core", version = "2.0.0-rc3" }
sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "2.0.0-rc3" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc3" }
sc-client-api = { path = "../../../client/api", version = "2.0.0-rc4" }
sc-transaction-pool = { path = "../../transaction-pool", version = "2.0.0-rc4" }
sp-blockchain = { path = "../../../primitives/blockchain", version = "2.0.0-rc4" }
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common", version = "0.8.0-rc4" }
sp-inherents = { path = "../../../primitives/inherents", version = "2.0.0-rc4" }
sp-runtime = { path = "../../../primitives/runtime", version = "2.0.0-rc4" }
sp-core = { path = "../../../primitives/core", version = "2.0.0-rc4" }
sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "2.0.0-rc4" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc4" }
[dev-dependencies]
sc-basic-authorship = { path = "../../basic-authorship", version = "0.8.0-rc3" }
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client", version = "2.0.0-rc3" }
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool", version = "2.0.0-rc3" }
sc-basic-authorship = { path = "../../basic-authorship", version = "0.8.0-rc4" }
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client", version = "2.0.0-rc4" }
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool", version = "2.0.0-rc4" }
tokio = { version = "0.2", features = ["rt-core", "macros"] }
env_logger = "0.7.0"
tempfile = "3.1.0"
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-pow"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "PoW consensus algorithm for substrate"
edition = "2018"
@@ -13,17 +13,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc3", path = "../../../primitives/api" }
sc-client-api = { version = "2.0.0-rc3", path = "../../api" }
sp-block-builder = { version = "2.0.0-rc3", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0-rc3", path = "../../../primitives/inherents" }
sp-consensus-pow = { version = "0.8.0-rc3", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
sc-client-api = { version = "2.0.0-rc4", path = "../../api" }
sp-block-builder = { version = "2.0.0-rc4", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0-rc4", path = "../../../primitives/inherents" }
sp-consensus-pow = { version = "0.8.0-rc4", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
log = "0.4.8"
futures = { version = "0.3.1", features = ["compat"] }
sp-timestamp = { version = "2.0.0-rc3", path = "../../../primitives/timestamp" }
sp-timestamp = { version = "2.0.0-rc4", path = "../../../primitives/timestamp" }
derive_more = "0.99.2"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc3"}
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc4"}
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-slots"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic slots-based utilities for consensus"
edition = "2018"
@@ -14,20 +14,20 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1" }
sc-client-api = { version = "2.0.0-rc3", path = "../../api" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc3", path = "../../../primitives/application-crypto" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../../primitives/state-machine" }
sp-api = { version = "2.0.0-rc3", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0-rc3", path = "../../telemetry" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc3", path = "../../../primitives/inherents" }
sc-client-api = { version = "2.0.0-rc4", path = "../../api" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc4", path = "../../../primitives/application-crypto" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../../primitives/state-machine" }
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0-rc4", path = "../../telemetry" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc4", path = "../../../primitives/inherents" }
futures = "0.3.4"
futures-timer = "3.0.1"
parking_lot = "0.10.0"
log = "0.4.8"
[dev-dependencies]
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../../test-utils/runtime/client" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../../test-utils/runtime/client" }
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-uncles"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic uncle inclusion utilities for consensus"
edition = "2018"
@@ -12,10 +12,10 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0-rc3", path = "../../api" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-authorship = { version = "2.0.0-rc3", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc3", path = "../../../primitives/inherents" }
sc-client-api = { version = "2.0.0-rc4", path = "../../api" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-authorship = { version = "2.0.0-rc4", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc4", path = "../../../primitives/inherents" }
log = "0.4.8"
+14 -14
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-client-db"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -23,22 +23,22 @@ parity-util-mem = { version = "0.6.1", default-features = false, features = ["st
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
blake2-rfc = "0.2.18"
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../primitives/state-machine" }
sc-executor = { version = "0.8.0-rc3", path = "../executor" }
sc-state-db = { version = "0.8.0-rc3", path = "../state-db" }
sp-trie = { version = "2.0.0-rc3", path = "../../primitives/trie" }
sp-consensus = { version = "0.8.0-rc3", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sp-database = { version = "2.0.0-rc3", path = "../../primitives/database" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../primitives/state-machine" }
sc-executor = { version = "0.8.0-rc4", path = "../executor" }
sc-state-db = { version = "0.8.0-rc4", path = "../state-db" }
sp-trie = { version = "2.0.0-rc4", path = "../../primitives/trie" }
sp-consensus = { version = "0.8.0-rc4", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sp-database = { version = "2.0.0-rc4", path = "../../primitives/database" }
parity-db = { version = "0.1.2", optional = true }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0-rc3", path = "../../utils/prometheus" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0-rc4", path = "../../utils/prometheus" }
[dev-dependencies]
sp-keyring = { version = "2.0.0-rc3", path = "../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0-rc4", path = "../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client" }
env_logger = "0.7.0"
quickcheck = "0.9"
kvdb-rocksdb = "0.8"
+20 -20
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-executor"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -15,22 +15,22 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
derive_more = "0.99.2"
codec = { package = "parity-scale-codec", version = "1.3.1" }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-trie = { version = "2.0.0-rc3", path = "../../primitives/trie" }
sp-serializer = { version = "2.0.0-rc3", path = "../../primitives/serializer" }
sp-version = { version = "2.0.0-rc3", path = "../../primitives/version" }
sp-panic-handler = { version = "2.0.0-rc3", path = "../../primitives/panic-handler" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-trie = { version = "2.0.0-rc4", path = "../../primitives/trie" }
sp-serializer = { version = "2.0.0-rc4", path = "../../primitives/serializer" }
sp-version = { version = "2.0.0-rc4", path = "../../primitives/version" }
sp-panic-handler = { version = "2.0.0-rc4", path = "../../primitives/panic-handler" }
wasmi = "0.6.2"
parity-wasm = "0.41.0"
lazy_static = "1.4.0"
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sp-wasm-interface = { version = "2.0.0-rc3", path = "../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-rc3", path = "../../primitives/runtime-interface" }
sp-externalities = { version = "0.8.0-rc3", path = "../../primitives/externalities" }
sc-executor-common = { version = "0.8.0-rc3", path = "common" }
sc-executor-wasmi = { version = "0.8.0-rc3", path = "wasmi" }
sc-executor-wasmtime = { version = "0.8.0-rc3", path = "wasmtime", optional = true }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
sp-wasm-interface = { version = "2.0.0-rc4", path = "../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-rc4", path = "../../primitives/runtime-interface" }
sp-externalities = { version = "0.8.0-rc4", path = "../../primitives/externalities" }
sc-executor-common = { version = "0.8.0-rc4", path = "common" }
sc-executor-wasmi = { version = "0.8.0-rc4", path = "wasmi" }
sc-executor-wasmtime = { version = "0.8.0-rc4", path = "wasmtime", optional = true }
parking_lot = "0.10.0"
log = "0.4.8"
libsecp256k1 = "0.3.4"
@@ -39,13 +39,13 @@ libsecp256k1 = "0.3.4"
assert_matches = "1.3.0"
wabt = "0.9.2"
hex-literal = "0.2.1"
sc-runtime-test = { version = "2.0.0-rc3", path = "runtime-test" }
substrate-test-runtime = { version = "2.0.0-rc3", path = "../../test-utils/runtime" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../primitives/state-machine" }
sc-runtime-test = { version = "2.0.0-rc4", path = "runtime-test" }
substrate-test-runtime = { version = "2.0.0-rc4", path = "../../test-utils/runtime" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../primitives/state-machine" }
test-case = "0.3.3"
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc3", path = "../../primitives/tracing" }
sc-tracing = { version = "2.0.0-rc3", path = "../tracing" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc4", path = "../../primitives/tracing" }
sc-tracing = { version = "2.0.0-rc4", path = "../tracing" }
tracing = "0.1.14"
[features]
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-executor-common"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -18,11 +18,11 @@ derive_more = "0.99.2"
parity-wasm = "0.41.0"
codec = { package = "parity-scale-codec", version = "1.3.1" }
wasmi = "0.6.2"
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0-rc3", path = "../../../primitives/allocator" }
sp-wasm-interface = { version = "2.0.0-rc3", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-rc3", path = "../../../primitives/runtime-interface" }
sp-serializer = { version = "2.0.0-rc3", path = "../../../primitives/serializer" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0-rc4", path = "../../../primitives/allocator" }
sp-wasm-interface = { version = "2.0.0-rc4", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-rc4", path = "../../../primitives/runtime-interface" }
sp-serializer = { version = "2.0.0-rc4", path = "../../../primitives/serializer" }
[features]
default = []
@@ -1,6 +1,6 @@
[package]
name = "sc-runtime-test"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
@@ -13,12 +13,12 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/io" }
sp-sandbox = { version = "0.8.0-rc3", default-features = false, path = "../../../primitives/sandbox" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
sp-allocator = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/allocator" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/io" }
sp-sandbox = { version = "0.8.0-rc4", default-features = false, path = "../../../primitives/sandbox" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
sp-allocator = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/allocator" }
[build-dependencies]
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-executor-wasmi"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -16,8 +16,8 @@ targets = ["x86_64-unknown-linux-gnu"]
log = "0.4.8"
wasmi = "0.6.2"
codec = { package = "parity-scale-codec", version = "1.3.1" }
sc-executor-common = { version = "0.8.0-rc3", path = "../common" }
sp-wasm-interface = { version = "2.0.0-rc3", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-rc3", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0-rc3", path = "../../../primitives/allocator" }
sc-executor-common = { version = "0.8.0-rc4", path = "../common" }
sp-wasm-interface = { version = "2.0.0-rc4", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-rc4", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0-rc4", path = "../../../primitives/allocator" }
@@ -1,6 +1,6 @@
[package]
name = "sc-executor-wasmtime"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -16,11 +16,11 @@ log = "0.4.8"
scoped-tls = "1.0"
parity-wasm = "0.41.0"
codec = { package = "parity-scale-codec", version = "1.3.1" }
sc-executor-common = { version = "0.8.0-rc3", path = "../common" }
sp-wasm-interface = { version = "2.0.0-rc3", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-rc3", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0-rc3", path = "../../../primitives/allocator" }
sc-executor-common = { version = "0.8.0-rc4", path = "../common" }
sp-wasm-interface = { version = "2.0.0-rc4", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-rc4", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0-rc4", path = "../../../primitives/allocator" }
wasmtime = { package = "substrate-wasmtime", version = "0.16.0-threadsafe.4" }
wasmtime-runtime = { package = "substrate-wasmtime-runtime", version = "0.16.0-threadsafe.4" }
wasmtime-environ = "0.16"
+28 -28
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-finality-grandpa"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
derive_more = "0.99.2"
fork-tree = { version = "2.0.0-rc3", path = "../../utils/fork-tree" }
fork-tree = { version = "2.0.0-rc4", path = "../../utils/fork-tree" }
futures = "0.3.4"
futures-timer = "3.0.1"
log = "0.4.8"
@@ -23,38 +23,38 @@ parking_lot = "0.10.0"
rand = "0.7.2"
assert_matches = "1.3.0"
parity-scale-codec = { version = "1.3.1", features = ["derive"] }
sp-application-crypto = { version = "2.0.0-rc3", path = "../../primitives/application-crypto" }
sp-arithmetic = { version = "2.0.0-rc3", path = "../../primitives/arithmetic" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc3", path = "../../primitives/utils" }
sp-consensus = { version = "0.8.0-rc3", path = "../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0-rc3", path = "../../client/consensus/common" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sc-telemetry = { version = "2.0.0-rc3", path = "../telemetry" }
sc-keystore = { version = "2.0.0-rc3", path = "../keystore" }
sp-application-crypto = { version = "2.0.0-rc4", path = "../../primitives/application-crypto" }
sp-arithmetic = { version = "2.0.0-rc4", path = "../../primitives/arithmetic" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc4", path = "../../primitives/utils" }
sp-consensus = { version = "0.8.0-rc4", path = "../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0-rc4", path = "../../client/consensus/common" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
sc-telemetry = { version = "2.0.0-rc4", path = "../telemetry" }
sc-keystore = { version = "2.0.0-rc4", path = "../keystore" }
serde_json = "1.0.41"
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sp-inherents = { version = "2.0.0-rc3", path = "../../primitives/inherents" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sc-network = { version = "0.8.0-rc3", path = "../network" }
sc-network-gossip = { version = "0.8.0-rc3", path = "../network-gossip" }
sp-finality-tracker = { version = "2.0.0-rc3", path = "../../primitives/finality-tracker" }
sp-finality-grandpa = { version = "2.0.0-rc3", path = "../../primitives/finality-grandpa" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-rc3"}
sc-block-builder = { version = "0.8.0-rc3", path = "../block-builder" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sp-inherents = { version = "2.0.0-rc4", path = "../../primitives/inherents" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sc-network = { version = "0.8.0-rc4", path = "../network" }
sc-network-gossip = { version = "0.8.0-rc4", path = "../network-gossip" }
sp-finality-tracker = { version = "2.0.0-rc4", path = "../../primitives/finality-tracker" }
sp-finality-grandpa = { version = "2.0.0-rc4", path = "../../primitives/finality-grandpa" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-rc4"}
sc-block-builder = { version = "0.8.0-rc4", path = "../block-builder" }
finality-grandpa = { version = "0.12.3", features = ["derive-codec"] }
pin-project = "0.4.6"
[dev-dependencies]
finality-grandpa = { version = "0.12.3", features = ["derive-codec", "test-helpers"] }
sc-network = { version = "0.8.0-rc3", path = "../network" }
sc-network-test = { version = "0.8.0-rc3", path = "../network/test" }
sp-keyring = { version = "2.0.0-rc3", path = "../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client" }
sp-consensus-babe = { version = "0.8.0-rc3", path = "../../primitives/consensus/babe" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../primitives/state-machine" }
sc-network = { version = "0.8.0-rc4", path = "../network" }
sc-network-test = { version = "0.8.0-rc4", path = "../network/test" }
sp-keyring = { version = "2.0.0-rc4", path = "../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client" }
sp-consensus-babe = { version = "0.8.0-rc4", path = "../../primitives/consensus/babe" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../primitives/state-machine" }
env_logger = "0.7.0"
tokio = { version = "0.2", features = ["rt-core"] }
tempfile = "3.1.0"
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
@@ -1,6 +1,6 @@
[package]
name = "sc-finality-grandpa-rpc"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "RPC extensions for the GRANDPA finality gadget"
repository = "https://github.com/paritytech/substrate/"
@@ -8,7 +8,7 @@ edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
[dependencies]
sc-finality-grandpa = { version = "0.8.0-rc3", path = "../" }
sc-finality-grandpa = { version = "0.8.0-rc4", path = "../" }
finality-grandpa = { version = "0.12.3", features = ["derive-codec"] }
jsonrpc-core = "14.2.0"
jsonrpc-core-client = "14.2.0"
@@ -20,4 +20,4 @@ log = "0.4.8"
derive_more = "0.99.2"
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-informant"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate informant."
edition = "2018"
@@ -17,10 +17,10 @@ futures = "0.3.4"
log = "0.4.8"
parity-util-mem = { version = "0.6.1", default-features = false, features = ["primitive-types"] }
wasm-timer = "0.2"
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sc-network = { version = "0.8.0-rc3", path = "../network" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sc-network = { version = "0.8.0-rc4", path = "../network" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc2", path = "../../primitives/utils" }
sp-transaction-pool = { version = "2.0.0-rc2", path = "../../primitives/transaction-pool" }
parking_lot = "0.10.2"
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-keystore"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -15,8 +15,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
derive_more = "0.99.2"
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc3", path = "../../primitives/application-crypto" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc4", path = "../../primitives/application-crypto" }
hex = "0.4.0"
merlin = { version = "2.0", default-features = false }
parking_lot = "0.10.0"
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
description = "components for a light client"
name = "sc-light"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
+4 -4
View File
@@ -1,7 +1,7 @@
[package]
description = "Gossiping for the Substrate network protocol"
name = "sc-network-gossip"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -19,12 +19,12 @@ futures-timer = "3.0.1"
libp2p = { version = "0.19.1", default-features = false }
log = "0.4.8"
lru = "0.4.3"
sc-network = { version = "0.8.0-rc3", path = "../network" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sc-network = { version = "0.8.0-rc4", path = "../network" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
wasm-timer = "0.2"
[dev-dependencies]
async-std = "1.5"
quickcheck = "0.9.0"
rand = "0.7.2"
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client" }
+16 -16
View File
@@ -1,7 +1,7 @@
[package]
description = "Substrate network protocol"
name = "sc-network"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -26,7 +26,7 @@ derive_more = "0.99.2"
either = "1.5.3"
erased-serde = "0.3.9"
fnv = "1.0.6"
fork-tree = { version = "2.0.0-rc3", path = "../../utils/fork-tree" }
fork-tree = { version = "2.0.0-rc4", path = "../../utils/fork-tree" }
futures = "0.3.4"
futures-timer = "3.0.1"
futures_codec = "0.3.3"
@@ -39,23 +39,23 @@ lru = "0.4.0"
nohash-hasher = "0.2.0"
parking_lot = "0.10.0"
pin-project = "0.4.6"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0-rc3", path = "../../utils/prometheus" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0-rc4", path = "../../utils/prometheus" }
prost = "0.6.1"
rand = "0.7.2"
sc-block-builder = { version = "0.8.0-rc3", path = "../block-builder" }
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sc-peerset = { version = "2.0.0-rc3", path = "../peerset" }
sc-block-builder = { version = "0.8.0-rc4", path = "../block-builder" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sc-peerset = { version = "2.0.0-rc4", path = "../peerset" }
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.41"
slog = { version = "2.5.2", features = ["nested-values"] }
slog_derive = "0.2.0"
smallvec = "0.6.10"
sp-arithmetic = { version = "2.0.0-rc3", path = "../../primitives/arithmetic" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-rc3", path = "../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc3", path = "../../primitives/utils" }
sp-arithmetic = { version = "2.0.0-rc4", path = "../../primitives/arithmetic" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-rc4", path = "../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc4", path = "../../primitives/utils" }
thiserror = "1"
unsigned-varint = { version = "0.3.1", features = ["futures", "futures-codec"] }
void = "1.0.2"
@@ -74,10 +74,10 @@ env_logger = "0.7.0"
libp2p = { version = "0.19.1", default-features = false, features = ["secio"] }
quickcheck = "0.9.0"
rand = "0.7.2"
sp-keyring = { version = "2.0.0-rc3", path = "../../primitives/keyring" }
sp-test-primitives = { version = "2.0.0-rc3", path = "../../primitives/test-primitives" }
substrate-test-runtime = { version = "2.0.0-rc3", path = "../../test-utils/runtime" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0-rc4", path = "../../primitives/keyring" }
sp-test-primitives = { version = "2.0.0-rc4", path = "../../primitives/test-primitives" }
substrate-test-runtime = { version = "2.0.0-rc4", path = "../../test-utils/runtime" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client" }
tempfile = "3.1.0"
[features]
+13 -13
View File
@@ -1,7 +1,7 @@
[package]
description = "Integration tests for Substrate network protocol"
name = "sc-network-test"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -13,23 +13,23 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-network = { version = "0.8.0-rc3", path = "../" }
sc-network = { version = "0.8.0-rc4", path = "../" }
log = "0.4.8"
parking_lot = "0.10.0"
futures = "0.3.4"
futures-timer = "3.0.1"
rand = "0.7.2"
libp2p = { version = "0.19.1", default-features = false }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0-rc3", path = "../../../client/consensus/common" }
sc-client-api = { version = "2.0.0-rc3", path = "../../api" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sc-block-builder = { version = "0.8.0-rc3", path = "../../block-builder" }
sp-consensus-babe = { version = "0.8.0-rc3", path = "../../../primitives/consensus/babe" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0-rc4", path = "../../../client/consensus/common" }
sc-client-api = { version = "2.0.0-rc4", path = "../../api" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sc-block-builder = { version = "0.8.0-rc4", path = "../../block-builder" }
sp-consensus-babe = { version = "0.8.0-rc4", path = "../../../primitives/consensus/babe" }
env_logger = "0.7.0"
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../../test-utils/runtime/client" }
substrate-test-runtime = { version = "2.0.0-rc3", path = "../../../test-utils/runtime" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../../test-utils/runtime/client" }
substrate-test-runtime = { version = "2.0.0-rc4", path = "../../../test-utils/runtime" }
tempfile = "3.1.0"
sc-service = { version = "0.8.0-rc3", default-features = false, features = ["test-helpers"], path = "../../service" }
sc-service = { version = "0.8.0-rc4", default-features = false, features = ["test-helpers"], path = "../../service" }
+13 -13
View File
@@ -1,7 +1,7 @@
[package]
description = "Substrate offchain workers"
name = "sc-offchain"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -13,23 +13,23 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
bytes = "0.5"
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
fnv = "1.0.6"
futures = "0.3.4"
futures-timer = "3.0.1"
log = "0.4.8"
threadpool = "1.7"
num_cpus = "1.10"
sp-offchain = { version = "2.0.0-rc3", path = "../../primitives/offchain" }
sp-offchain = { version = "2.0.0-rc4", path = "../../primitives/offchain" }
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
parking_lot = "0.10.0"
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
rand = "0.7.2"
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc3", path = "../../primitives/utils" }
sc-network = { version = "0.8.0-rc3", path = "../network" }
sc-keystore = { version = "2.0.0-rc3", path = "../keystore" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc4", path = "../../primitives/utils" }
sc-network = { version = "0.8.0-rc4", path = "../network" }
sc-keystore = { version = "2.0.0-rc4", path = "../keystore" }
[target.'cfg(not(target_os = "unknown"))'.dependencies]
hyper = "0.13.2"
@@ -37,10 +37,10 @@ hyper-rustls = "0.20"
[dev-dependencies]
env_logger = "0.7.0"
sc-client-db = { version = "0.8.0-rc3", default-features = true, path = "../db/" }
sc-transaction-pool = { version = "2.0.0-rc3", path = "../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../primitives/transaction-pool" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client" }
sc-client-db = { version = "0.8.0-rc4", default-features = true, path = "../db/" }
sc-transaction-pool = { version = "2.0.0-rc4", path = "../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../primitives/transaction-pool" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client" }
tokio = "0.2"
lazy_static = "1.4.0"
+2 -2
View File
@@ -3,7 +3,7 @@ description = "Connectivity manager based on reputation"
homepage = "http://parity.io"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
name = "sc-peerset"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
repository = "https://github.com/paritytech/substrate/"
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
futures = "0.3.4"
libp2p = { version = "0.19.1", default-features = false }
sp-utils = { version = "2.0.0-rc3", path = "../../primitives/utils"}
sp-utils = { version = "2.0.0-rc4", path = "../../primitives/utils"}
log = "0.4.8"
serde_json = "1.0.41"
wasm-timer = "0.2"
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-proposer-metrics"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -13,4 +13,4 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
log = "0.4.8"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-rc3"}
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-rc4"}
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-rpc-api"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -21,11 +21,11 @@ jsonrpc-derive = "14.2.1"
jsonrpc-pubsub = "14.2.0"
log = "0.4.8"
parking_lot = "0.10.0"
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-version = { version = "2.0.0-rc3", path = "../../primitives/version" }
sp-runtime = { path = "../../primitives/runtime" , version = "2.0.0-rc3"}
sp-chain-spec = { path = "../../primitives/chain-spec" , version = "2.0.0-rc3"}
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-version = { version = "2.0.0-rc4", path = "../../primitives/version" }
sp-runtime = { path = "../../primitives/runtime" , version = "2.0.0-rc4"}
sp-chain-spec = { path = "../../primitives/chain-spec" , version = "2.0.0-rc4"}
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.41"
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../primitives/transaction-pool" }
sp-rpc = { version = "2.0.0-rc3", path = "../../primitives/rpc" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../primitives/transaction-pool" }
sp-rpc = { version = "2.0.0-rc4", path = "../../primitives/rpc" }
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-rpc-server"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -17,7 +17,7 @@ pubsub = { package = "jsonrpc-pubsub", version = "14.2.0" }
log = "0.4.8"
serde = "1.0.101"
serde_json = "1.0.41"
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
[target.'cfg(not(target_os = "unknown"))'.dependencies]
http = { package = "jsonrpc-http-server", version = "14.2.0" }
+22 -22
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-rpc"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -12,38 +12,38 @@ description = "Substrate Client RPC"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-rpc-api = { version = "0.8.0-rc3", path = "../rpc-api" }
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sc-rpc-api = { version = "0.8.0-rc4", path = "../rpc-api" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
codec = { package = "parity-scale-codec", version = "1.3.1" }
futures = { version = "0.3.1", features = ["compat"] }
jsonrpc-pubsub = "14.2.0"
log = "0.4.8"
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
rpc = { package = "jsonrpc-core", version = "14.2.0" }
sp-version = { version = "2.0.0-rc3", path = "../../primitives/version" }
sp-version = { version = "2.0.0-rc4", path = "../../primitives/version" }
serde_json = "1.0.41"
sp-session = { version = "2.0.0-rc3", path = "../../primitives/session" }
sp-offchain = { version = "2.0.0-rc3", path = "../../primitives/offchain" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc3", path = "../../primitives/utils" }
sp-rpc = { version = "2.0.0-rc3", path = "../../primitives/rpc" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../primitives/state-machine" }
sp-chain-spec = { version = "2.0.0-rc3", path = "../../primitives/chain-spec" }
sc-executor = { version = "0.8.0-rc3", path = "../executor" }
sc-block-builder = { version = "0.8.0-rc3", path = "../../client/block-builder" }
sc-keystore = { version = "2.0.0-rc3", path = "../keystore" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../primitives/transaction-pool" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sp-session = { version = "2.0.0-rc4", path = "../../primitives/session" }
sp-offchain = { version = "2.0.0-rc4", path = "../../primitives/offchain" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc4", path = "../../primitives/utils" }
sp-rpc = { version = "2.0.0-rc4", path = "../../primitives/rpc" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../primitives/state-machine" }
sp-chain-spec = { version = "2.0.0-rc4", path = "../../primitives/chain-spec" }
sc-executor = { version = "0.8.0-rc4", path = "../executor" }
sc-block-builder = { version = "0.8.0-rc4", path = "../../client/block-builder" }
sc-keystore = { version = "2.0.0-rc4", path = "../keystore" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../primitives/transaction-pool" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
hash-db = { version = "0.15.2", default-features = false }
parking_lot = "0.10.0"
[dev-dependencies]
assert_matches = "1.3.0"
futures01 = { package = "futures", version = "0.1.29" }
sc-network = { version = "0.8.0-rc3", path = "../network" }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client" }
sc-network = { version = "0.8.0-rc4", path = "../network" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client" }
tokio = "0.1.22"
sc-transaction-pool = { version = "2.0.0-rc3", path = "../transaction-pool" }
sc-transaction-pool = { version = "2.0.0-rc4", path = "../transaction-pool" }
lazy_static = "1.4.0"
+35 -35
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-service"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -40,39 +40,39 @@ hash-db = "0.15.2"
serde = "1.0.101"
serde_json = "1.0.41"
sysinfo = "0.13.3"
sc-keystore = { version = "2.0.0-rc3", path = "../keystore" }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-trie = { version = "2.0.0-rc3", path = "../../primitives/trie" }
sp-externalities = { version = "0.8.0-rc3", path = "../../primitives/externalities" }
sp-utils = { version = "2.0.0-rc3", path = "../../primitives/utils" }
sp-version = { version = "2.0.0-rc3", path = "../../primitives/version" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-session = { version = "2.0.0-rc3", path = "../../primitives/session" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../primitives/state-machine" }
sp-application-crypto = { version = "2.0.0-rc3", path = "../../primitives/application-crypto" }
sp-consensus = { version = "0.8.0-rc3", path = "../../primitives/consensus/common" }
sc-network = { version = "0.8.0-rc3", path = "../network" }
sc-chain-spec = { version = "2.0.0-rc3", path = "../chain-spec" }
sc-light = { version = "2.0.0-rc3", path = "../light" }
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sc-client-db = { version = "0.8.0-rc3", default-features = false, path = "../db" }
sc-keystore = { version = "2.0.0-rc4", path = "../keystore" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-trie = { version = "2.0.0-rc4", path = "../../primitives/trie" }
sp-externalities = { version = "0.8.0-rc4", path = "../../primitives/externalities" }
sp-utils = { version = "2.0.0-rc4", path = "../../primitives/utils" }
sp-version = { version = "2.0.0-rc4", path = "../../primitives/version" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-session = { version = "2.0.0-rc4", path = "../../primitives/session" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../primitives/state-machine" }
sp-application-crypto = { version = "2.0.0-rc4", path = "../../primitives/application-crypto" }
sp-consensus = { version = "0.8.0-rc4", path = "../../primitives/consensus/common" }
sc-network = { version = "0.8.0-rc4", path = "../network" }
sc-chain-spec = { version = "2.0.0-rc4", path = "../chain-spec" }
sc-light = { version = "2.0.0-rc4", path = "../light" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
sc-client-db = { version = "0.8.0-rc4", default-features = false, path = "../db" }
codec = { package = "parity-scale-codec", version = "1.3.1" }
sc-executor = { version = "0.8.0-rc3", path = "../executor" }
sc-transaction-pool = { version = "2.0.0-rc3", path = "../transaction-pool" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../primitives/transaction-pool" }
sc-rpc-server = { version = "2.0.0-rc3", path = "../rpc-servers" }
sc-rpc = { version = "2.0.0-rc3", path = "../rpc" }
sc-block-builder = { version = "0.8.0-rc3", path = "../block-builder" }
sp-block-builder = { version = "2.0.0-rc3", path = "../../primitives/block-builder" }
sc-executor = { version = "0.8.0-rc4", path = "../executor" }
sc-transaction-pool = { version = "2.0.0-rc4", path = "../transaction-pool" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../primitives/transaction-pool" }
sc-rpc-server = { version = "2.0.0-rc4", path = "../rpc-servers" }
sc-rpc = { version = "2.0.0-rc4", path = "../rpc" }
sc-block-builder = { version = "0.8.0-rc4", path = "../block-builder" }
sp-block-builder = { version = "2.0.0-rc4", path = "../../primitives/block-builder" }
sc-informant = { version = "0.8.0-rc2", path = "../informant" }
sc-telemetry = { version = "2.0.0-rc3", path = "../telemetry" }
sc-offchain = { version = "2.0.0-rc3", path = "../offchain" }
sc-telemetry = { version = "2.0.0-rc4", path = "../telemetry" }
sc-offchain = { version = "2.0.0-rc4", path = "../offchain" }
parity-multiaddr = { package = "parity-multiaddr", version = "0.7.3" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" , version = "0.8.0-rc3"}
sc-tracing = { version = "2.0.0-rc3", path = "../tracing" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" , version = "0.8.0-rc4"}
sc-tracing = { version = "2.0.0-rc4", path = "../tracing" }
tracing = "0.1.10"
parity-util-mem = { version = "0.6.1", default-features = false, features = ["primitive-types"] }
@@ -88,7 +88,7 @@ tempfile = "3.1.0"
directories = "2.0.2"
[dev-dependencies]
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client" }
sp-consensus-babe = { version = "0.8.0-rc3", path = "../../primitives/consensus/babe" }
grandpa = { version = "0.8.0-rc3", package = "sc-finality-grandpa", path = "../finality-grandpa" }
grandpa-primitives = { version = "2.0.0-rc3", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client" }
sp-consensus-babe = { version = "0.8.0-rc4", path = "../../primitives/consensus/babe" }
grandpa = { version = "0.8.0-rc4", package = "sc-finality-grandpa", path = "../finality-grandpa" }
grandpa-primitives = { version = "2.0.0-rc4", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
+21 -21
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-service-test"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -20,25 +20,25 @@ log = "0.4.8"
env_logger = "0.7.0"
fdlimit = "0.1.4"
parking_lot = "0.10.0"
sc-light = { version = "2.0.0-rc3", path = "../../light" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-api = { version = "2.0.0-rc3", path = "../../../primitives/api" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../../primitives/state-machine" }
sp-externalities = { version = "0.8.0-rc3", path = "../../../primitives/externalities" }
sp-trie = { version = "2.0.0-rc3", path = "../../../primitives/trie" }
sp-storage = { version = "2.0.0-rc3", path = "../../../primitives/storage" }
sc-client-db = { version = "0.8.0-rc3", default-features = false, path = "../../db" }
sc-light = { version = "2.0.0-rc4", path = "../../light" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../../primitives/state-machine" }
sp-externalities = { version = "0.8.0-rc4", path = "../../../primitives/externalities" }
sp-trie = { version = "2.0.0-rc4", path = "../../../primitives/trie" }
sp-storage = { version = "2.0.0-rc4", path = "../../../primitives/storage" }
sc-client-db = { version = "0.8.0-rc4", default-features = false, path = "../../db" }
futures = { version = "0.3.1", features = ["compat"] }
sc-service = { version = "0.8.0-rc3", default-features = false, features = ["test-helpers"], path = "../../service" }
sc-network = { version = "0.8.0-rc3", path = "../../network" }
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../../primitives/transaction-pool" }
substrate-test-runtime = { version = "2.0.0-rc3", path = "../../../test-utils/runtime" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../../test-utils/runtime/client" }
sc-client-api = { version = "2.0.0-rc3", path = "../../api" }
sc-block-builder = { version = "0.8.0-rc3", path = "../../block-builder" }
sc-executor = { version = "0.8.0-rc3", path = "../../executor" }
sp-panic-handler = { version = "2.0.0-rc3", path = "../../../primitives/panic-handler" }
sc-service = { version = "0.8.0-rc4", default-features = false, features = ["test-helpers"], path = "../../service" }
sc-network = { version = "0.8.0-rc4", path = "../../network" }
sp-consensus = { version = "0.8.0-rc4", path = "../../../primitives/consensus/common" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../../primitives/transaction-pool" }
substrate-test-runtime = { version = "2.0.0-rc4", path = "../../../test-utils/runtime" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../../test-utils/runtime/client" }
sc-client-api = { version = "2.0.0-rc4", path = "../../api" }
sc-block-builder = { version = "0.8.0-rc4", path = "../../block-builder" }
sc-executor = { version = "0.8.0-rc4", path = "../../executor" }
sp-panic-handler = { version = "2.0.0-rc4", path = "../../../primitives/panic-handler" }
parity-scale-codec = "1.3.1"
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-state-db"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
parking_lot = "0.10.0"
log = "0.4.8"
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
parity-util-mem = { version = "0.6.1", default-features = false, features = ["primitive-types"] }
parity-util-mem-derive = "0.1.0"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-telemetry"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Telemetry utils"
edition = "2018"
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-tracing"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -22,7 +22,7 @@ slog = { version = "2.5.2", features = ["nested-values"] }
tracing-core = "0.1.7"
sp-tracing = { version = "2.0.0-rc2", path = "../../primitives/tracing" }
sc-telemetry = { version = "2.0.0-rc3", path = "../telemetry" }
sc-telemetry = { version = "2.0.0-rc4", path = "../telemetry" }
[dev-dependencies]
tracing = "0.1.10"
+16 -16
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-transaction-pool"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -20,23 +20,23 @@ intervalier = "0.4.0"
log = "0.4.8"
parity-util-mem = { version = "0.6.1", default-features = false, features = ["primitive-types"] }
parking_lot = "0.10.0"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-rc3"}
sc-client-api = { version = "2.0.0-rc3", path = "../api" }
sc-transaction-graph = { version = "2.0.0-rc3", path = "./graph" }
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc3", path = "../../primitives/tracing" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../primitives/transaction-pool" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sp-utils = { version = "2.0.0-rc3", path = "../../primitives/utils" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-rc4"}
sc-client-api = { version = "2.0.0-rc4", path = "../api" }
sc-transaction-graph = { version = "2.0.0-rc4", path = "./graph" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc4", path = "../../primitives/tracing" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../primitives/transaction-pool" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sp-utils = { version = "2.0.0-rc4", path = "../../primitives/utils" }
wasm-timer = "0.2"
[dev-dependencies]
assert_matches = "1.3.0"
hex = "0.4"
sp-keyring = { version = "2.0.0-rc3", path = "../../primitives/keyring" }
sp-consensus = { version = "0.8.0-rc3", path = "../../primitives/consensus/common" }
substrate-test-runtime-transaction-pool = { version = "2.0.0-rc3", path = "../../test-utils/runtime/transaction-pool" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0-rc3", path = "../block-builder" }
sp-keyring = { version = "2.0.0-rc4", path = "../../primitives/keyring" }
sp-consensus = { version = "0.8.0-rc4", path = "../../primitives/consensus/common" }
substrate-test-runtime-transaction-pool = { version = "2.0.0-rc4", path = "../../test-utils/runtime/transaction-pool" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0-rc4", path = "../block-builder" }
@@ -1,6 +1,6 @@
[package]
name = "sc-transaction-graph"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -18,18 +18,18 @@ log = "0.4.8"
parking_lot = "0.10.0"
serde = { version = "1.0.101", features = ["derive"] }
wasm-timer = "0.2"
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-utils = { version = "2.0.0-rc3", path = "../../../primitives/utils" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../../primitives/transaction-pool" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-utils = { version = "2.0.0-rc4", path = "../../../primitives/utils" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-transaction-pool = { version = "2.0.0-rc4", path = "../../../primitives/transaction-pool" }
parity-util-mem = { version = "0.6.1", default-features = false, features = ["primitive-types"] }
linked-hash-map = "0.5.2"
[dev-dependencies]
assert_matches = "1.3.0"
codec = { package = "parity-scale-codec", version = "1.3.1" }
substrate-test-runtime = { version = "2.0.0-rc3", path = "../../../test-utils/runtime" }
substrate-test-runtime = { version = "2.0.0-rc4", path = "../../../test-utils/runtime" }
criterion = "0.3"
[[bench]]
+54
View File
@@ -6,6 +6,60 @@ The format is based on [Keep a Changelog].
## Unreleased
## 2.0.0-rc3 -> 2.0.0-rc4 (Rhinoceros)
Runtime
-------
* Staking Payout Creates Controller (#6496)
* `pallet-scheduler`: Check that `when` is not in the past (#6480)
* Fix `sp-api` handling of multiple arguments (#6484)
* Fix issues with `Operational` transactions validity and prioritization. (#6435)
* pallet-atomic-swap: generialized swap action (#6421)
* Avoid multisig reentrancy (#6445)
* Root origin use no filter by default. Scheduler and Democracy dispatch without asserting BaseCallFilter (#6408)
* Scale and increase validator count (#6417)
* Pallet: Atomic Swap (#6349)
* Restrict remove_proxies (#6383)
* Stored call in multisig (#6319)
* Allow Sudo to do anything (#6375)
* vesting: Force Vested Transfer (#6368)
* Add events for balance reserve and unreserve functions (#6330)
* Introduce frozen indices. (#6307)
Client
------
* client/network/service: Add primary dimension to connection metrics (#6472)
* Fix Babe secondary plain slots claiming (#6451)
* add network propagated metrics (#6438)
* client/authority-discovery: Compare PeerIds and not Multihashes (#6414)
* Update sync chain info on own block import (#6424)
* Remove --legacy-network-protocol CLI flag (#6411)
* Runtime interface to add support for tracing from wasm (#6381)
* Remove penalty on duplicate Status message (#6377)
* Fix the broken weight multiplier update function (#6334)
* client/authority-discovery: Don't add own address to priority group (#6370)
* Split the service initialisation up into seperate functions (#6332)
* Fix transaction pool event sending (#6341)
* Add a [prefix]_process_start_time_seconds metric (#6315)
* new crate sc-light (#6235)
* Allow adding a prefix to the informant (#6174)
API
---
* seal: Remove ext_dispatch_call and ext_get_runtime_storage (#6464)
* seal: Refactor ext_gas_price (#6478)
* Implement nested storage transactions (#6269)
* Allow empty values in the storage (#6364)
* add system_dryRun (#6300)
* Introduce in-origin filtering (#6318)
* add extend_lock for StorageLock (#6323)
* Deprecate FunctionOf and remove its users (#6340)
* transaction-pool: expose blocking api for tx submission (#6325)
## 2.0.0-rc2 -> 2.0.0-rc3
Runtime
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-assets"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,16 +15,16 @@ targets = ["x86_64-unknown-linux-gnu"]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
# Needed for various traits. In our case, `OnFinalize`.
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
# Needed for type-safe access to storage DB.
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
# `system` module provides us with all sorts of useful stuff and macros depend on it being around.
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-atomic-swap"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
[dev-dependencies]
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+13 -13
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-aura"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,23 +12,23 @@ description = "FRAME AURA consensus pallet"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../session" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
sp-consensus-aura = { version = "0.8.0-rc3", path = "../../primitives/consensus/aura", default-features = false }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/timestamp" }
pallet-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../timestamp" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../session" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
sp-consensus-aura = { version = "0.8.0-rc4", path = "../../primitives/consensus/aura", default-features = false }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/timestamp" }
pallet-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../timestamp" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
lazy_static = "1.4.0"
parking_lot = "0.10.0"
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-authority-discovery"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,20 +12,20 @@ description = "FRAME pallet for authority discovery"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-authority-discovery = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/authority-discovery" }
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
sp-authority-discovery = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/authority-discovery" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
pallet-session = { version = "2.0.0-rc3", features = ["historical" ], path = "../session", default-features = false }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0-rc4", features = ["historical" ], path = "../session", default-features = false }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-authorship"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
description = "Block and Uncle Author tracking for the FRAME"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -13,17 +13,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
sp-authorship = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/authorship" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
sp-authorship = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/authorship" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
impl-trait-for-tuples = "0.1.3"
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
[features]
default = ["std"]
+15 -15
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-babe"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,22 +14,22 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../timestamp" }
sp-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/timestamp" }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../session" }
sp-consensus-babe = { version = "0.8.0-rc3", default-features = false, path = "../../primitives/consensus/babe" }
sp-consensus-vrf = { version = "0.8.0-rc3", default-features = false, path = "../../primitives/consensus/vrf" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../timestamp" }
sp-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/timestamp" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../session" }
sp-consensus-babe = { version = "0.8.0-rc4", default-features = false, path = "../../primitives/consensus/babe" }
sp-consensus-vrf = { version = "0.8.0-rc4", default-features = false, path = "../../primitives/consensus/vrf" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-balances"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,16 +14,16 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-transaction-payment = { version = "2.0.0-rc3", path = "../transaction-payment" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-transaction-payment = { version = "2.0.0-rc4", path = "../transaction-payment" }
[features]
default = ["std"]
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-benchmark"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,12 +14,12 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "frame-benchmarking"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,13 +15,13 @@ targets = ["x86_64-unknown-linux-gnu"]
linregress = "0.1"
paste = "0.1"
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api", default-features = false }
sp-runtime-interface = { version = "2.0.0-rc3", path = "../../primitives/runtime-interface", default-features = false }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime", default-features = false }
sp-std = { version = "2.0.0-rc3", path = "../../primitives/std", default-features = false }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api", default-features = false }
sp-runtime-interface = { version = "2.0.0-rc4", path = "../../primitives/runtime-interface", default-features = false }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime", default-features = false }
sp-std = { version = "2.0.0-rc4", path = "../../primitives/std", default-features = false }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io", default-features = false }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[features]
default = [ "std" ]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-collective"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-contracts"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -17,23 +17,23 @@ pwasm-utils = { version = "0.12.0", default-features = false }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
parity-wasm = { version = "0.41.0", default-features = false }
wasmi-validation = { version = "0.3.0", default-features = false }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-sandbox = { version = "0.8.0-rc3", default-features = false, path = "../../primitives/sandbox" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-contracts-primitives = { version = "2.0.0-rc3", default-features = false, path = "common" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-sandbox = { version = "0.8.0-rc4", default-features = false, path = "../../primitives/sandbox" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-contracts-primitives = { version = "2.0.0-rc4", default-features = false, path = "common" }
[dev-dependencies]
wabt = "0.9.2"
assert_matches = "1.3.0"
hex-literal = "0.2.1"
pretty_assertions = "0.6.1"
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../timestamp" }
pallet-randomness-collective-flip = { version = "2.0.0-rc3", path = "../randomness-collective-flip" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../timestamp" }
pallet-randomness-collective-flip = { version = "2.0.0-rc4", path = "../randomness-collective-flip" }
[features]
default = ["std"]
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-contracts-primitives"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
# This crate should not rely on any of the frame primitives.
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-contracts-rpc"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -16,14 +16,14 @@ codec = { package = "parity-scale-codec", version = "1.3.1" }
jsonrpc-core = "14.2.0"
jsonrpc-core-client = "14.2.0"
jsonrpc-derive = "14.2.1"
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-rpc = { version = "2.0.0-rc3", path = "../../../primitives/rpc" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-rpc = { version = "2.0.0-rc4", path = "../../../primitives/rpc" }
serde = { version = "1.0.101", features = ["derive"] }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc3", path = "../../../primitives/api" }
pallet-contracts-primitives = { version = "2.0.0-rc3", path = "../common" }
pallet-contracts-rpc-runtime-api = { version = "0.8.0-rc3", path = "./runtime-api" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
pallet-contracts-primitives = { version = "2.0.0-rc4", path = "../common" }
pallet-contracts-rpc-runtime-api = { version = "0.8.0-rc4", path = "./runtime-api" }
[dev-dependencies]
serde_json = "1.0.41"
@@ -1,6 +1,6 @@
[package]
name = "pallet-contracts-rpc-runtime-api"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,11 +12,11 @@ description = "Runtime API definition required by Contracts RPC extensions."
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-rc3", default-features = false, path = "../../../../primitives/api" }
sp-api = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/api" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../../primitives/runtime" }
pallet-contracts-primitives = { version = "2.0.0-rc3", default-features = false, path = "../../common" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/runtime" }
pallet-contracts-primitives = { version = "2.0.0-rc4", default-features = false, path = "../../common" }
[features]
default = ["std"]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-democracy"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-scheduler = { version = "2.0.0-rc3", path = "../scheduler" }
sp-storage = { version = "2.0.0-rc3", path = "../../primitives/storage" }
substrate-test-utils = { version = "2.0.0-rc3", path = "../../test-utils" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-scheduler = { version = "2.0.0-rc4", path = "../scheduler" }
sp-storage = { version = "2.0.0-rc4", path = "../../primitives/storage" }
substrate-test-utils = { version = "2.0.0-rc4", path = "../../test-utils" }
hex-literal = "0.2.1"
[features]
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-elections-phragmen"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-npos-elections = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/npos-elections" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-npos-elections = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/npos-elections" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
substrate-test-utils = { version = "2.0.0-rc3", path = "../../test-utils" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
substrate-test-utils = { version = "2.0.0-rc4", path = "../../test-utils" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-elections"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,16 +14,16 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-evm"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../timestamp" }
pallet-balances = { version = "2.0.0-rc3", default-features = false, path = "../balances" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../timestamp" }
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../balances" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
primitive-types = { version = "0.7.0", default-features = false, features = ["rlp"] }
rlp = { version = "0.4", default-features = false }
evm = { version = "0.16", default-features = false }
@@ -1,6 +1,6 @@
[package]
name = "pallet-example-offchain-worker"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Unlicense"
@@ -13,13 +13,13 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
serde = { version = "1.0.101", optional = true }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
lite-json = { version = "0.1", default-features = false }
[features]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-example"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Unlicense"
@@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-balances = { version = "2.0.0-rc3", default-features = false, path = "../balances" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../balances" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core", default-features = false }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core", default-features = false }
[features]
default = ["std"]
+13 -13
View File
@@ -1,6 +1,6 @@
[package]
name = "frame-executive"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -13,22 +13,22 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
serde = { version = "1.0.101", optional = true }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/tracing" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/tracing" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
[dev-dependencies]
hex-literal = "0.2.1"
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
pallet-indices = { version = "2.0.0-rc3", path = "../indices" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-transaction-payment = { version = "2.0.0-rc3", path = "../transaction-payment" }
sp-version = { version = "2.0.0-rc3", path = "../../primitives/version" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
pallet-indices = { version = "2.0.0-rc4", path = "../indices" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-transaction-payment = { version = "2.0.0-rc4", path = "../transaction-payment" }
sp-version = { version = "2.0.0-rc4", path = "../../primitives/version" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-finality-tracker"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -16,17 +16,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-finality-tracker = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/finality-tracker" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-finality-tracker = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/finality-tracker" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
impl-trait-for-tuples = "0.1.3"
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
[features]
default = ["std"]
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-generic-asset"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Centrality Developers <support@centrality.ai>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
+19 -19
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-grandpa"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,27 +14,27 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-finality-grandpa = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/finality-grandpa" }
sp-session = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/session" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../session" }
pallet-finality-tracker = { version = "2.0.0-rc3", default-features = false, path = "../finality-tracker" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-finality-grandpa = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/finality-grandpa" }
sp-session = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/session" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../session" }
pallet-finality-tracker = { version = "2.0.0-rc4", default-features = false, path = "../finality-tracker" }
[dev-dependencies]
grandpa = { package = "finality-grandpa", version = "0.12.3", features = ["derive-codec"] }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-keyring = { version = "2.0.0-rc3", path = "../../primitives/keyring" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-offences = { version = "2.0.0-rc3", path = "../offences" }
pallet-staking = { version = "2.0.0-rc3", path = "../staking" }
pallet-staking-reward-curve = { version = "2.0.0-rc3", path = "../staking/reward-curve" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../timestamp" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-keyring = { version = "2.0.0-rc4", path = "../../primitives/keyring" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-offences = { version = "2.0.0-rc4", path = "../offences" }
pallet-staking = { version = "2.0.0-rc4", path = "../staking" }
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../staking/reward-curve" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../timestamp" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-identity"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,16 +15,16 @@ targets = ["x86_64-unknown-linux-gnu"]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
enumflags2 = { version = "0.6.2" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-im-online"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,20 +12,20 @@ description = "FRAME's I'm online pallet"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
pallet-authorship = { version = "2.0.0-rc3", default-features = false, path = "../authorship" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
pallet-authorship = { version = "2.0.0-rc4", default-features = false, path = "../authorship" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../session" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../session" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[features]
default = ["std", "pallet-session/historical"]
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-indices"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-keyring = { version = "2.0.0-rc3", optional = true, path = "../../primitives/keyring" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-keyring = { version = "2.0.0-rc4", optional = true, path = "../../primitives/keyring" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-membership"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "frame-metadata"
version = "11.0.0-rc3"
version = "11.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
[features]
default = ["std"]
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-multisig"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-nicks"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-offences"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,18 +12,18 @@ description = "FRAME offences pallet"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
pallet-balances = { version = "2.0.0-rc3", default-features = false, path = "../balances" }
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../balances" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "pallet-offences-benchmarking"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -13,27 +13,27 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../../benchmarking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../../system" }
pallet-babe = { version = "2.0.0-rc3", default-features = false, path = "../../babe" }
pallet-balances = { version = "2.0.0-rc3", default-features = false, path = "../../balances" }
pallet-grandpa = { version = "2.0.0-rc3", default-features = false, path = "../../grandpa" }
pallet-im-online = { version = "2.0.0-rc3", default-features = false, path = "../../im-online" }
pallet-offences = { version = "2.0.0-rc3", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../../session" }
pallet-staking = { version = "2.0.0-rc3", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/staking" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/std" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../../benchmarking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../../system" }
pallet-babe = { version = "2.0.0-rc4", default-features = false, path = "../../babe" }
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../../balances" }
pallet-grandpa = { version = "2.0.0-rc4", default-features = false, path = "../../grandpa" }
pallet-im-online = { version = "2.0.0-rc4", default-features = false, path = "../../im-online" }
pallet-offences = { version = "2.0.0-rc4", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../../session" }
pallet-staking = { version = "2.0.0-rc4", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/staking" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
[dev-dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
pallet-staking-reward-curve = { version = "2.0.0-rc3", path = "../../staking/reward-curve" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../../timestamp" }
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../../staking/reward-curve" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../../timestamp" }
serde = { version = "1.0.101" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-io = { version = "2.0.0-rc3", path = "../../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-io = { version = "2.0.0-rc4", path = "../../../primitives/io" }
[features]
default = ["std"]
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-proxy"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-utility = { version = "2.0.0-rc3", path = "../utility" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-utility = { version = "2.0.0-rc4", path = "../utility" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "pallet-randomness-collective-flip"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
safe-mix = { version = "1.0", default-features = false }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-recovery"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
enumflags2 = { version = "0.6.2" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-scheduler"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Unlicense"
@@ -11,16 +11,16 @@ description = "FRAME example pallet"
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core", default-features = false }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core", default-features = false }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-scored-pool"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]

Some files were not shown because too many files have changed in this diff Show More