Releasing rc2 (#6136)

This commit is contained in:
Benjamin Kampmann
2020-05-26 14:32:23 +02:00
committed by GitHub
parent 42ad0d138f
commit b64f55089d
184 changed files with 1771 additions and 1768 deletions
+25 -25
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-aura"
version = "0.8.0-rc1"
version = "0.8.0-rc2"
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-rc1", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8.0-rc1", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0-rc1", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0-rc1", path = "../../../client/block-builder" }
sc-client-api = { version = "2.0.0-rc1", path = "../../api" }
sp-application-crypto = { version = "2.0.0-rc2", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8.0-rc2", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0-rc2", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0-rc2", path = "../../../client/block-builder" }
sc-client-api = { version = "2.0.0-rc2", path = "../../api" }
codec = { package = "parity-scale-codec", version = "1.3.0" }
sp-consensus = { version = "0.8.0-rc1", path = "../../../primitives/consensus/common" }
sp-consensus = { version = "0.8.0-rc2", path = "../../../primitives/consensus/common" }
derive_more = "0.99.2"
futures = "0.3.4"
futures-timer = "3.0.1"
sp-inherents = { version = "2.0.0-rc1", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0-rc1", path = "../../keystore" }
sp-inherents = { version = "2.0.0-rc2", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0-rc2", path = "../../keystore" }
log = "0.4.8"
parking_lot = "0.10.0"
sp-core = { version = "2.0.0-rc1", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc1", path = "../../../primitives/blockchain" }
sp-io = { version = "2.0.0-rc1", path = "../../../primitives/io" }
sp-version = { version = "2.0.0-rc1", path = "../../../primitives/version" }
sc-consensus-slots = { version = "0.8.0-rc1", path = "../slots" }
sp-api = { version = "2.0.0-rc1", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0-rc1", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-rc1", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-rc1", path = "../../telemetry" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc1"}
sp-core = { version = "2.0.0-rc2", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc2", path = "../../../primitives/blockchain" }
sp-io = { version = "2.0.0-rc2", path = "../../../primitives/io" }
sp-version = { version = "2.0.0-rc2", path = "../../../primitives/version" }
sc-consensus-slots = { version = "0.8.0-rc2", path = "../slots" }
sp-api = { version = "2.0.0-rc2", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0-rc2", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-rc2", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-rc2", path = "../../telemetry" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc2"}
[dev-dependencies]
sp-keyring = { version = "2.0.0-rc1", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-rc1", path = "../../executor" }
sc-network = { version = "0.8.0-rc1", path = "../../network" }
sc-network-test = { version = "0.8.0-rc1", path = "../../network/test" }
sc-service = { version = "0.8.0-rc1", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-rc1", path = "../../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0-rc2", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-rc2", path = "../../executor" }
sc-network = { version = "0.8.0-rc2", path = "../../network" }
sc-network-test = { version = "0.8.0-rc2", path = "../../network/test" }
sc-service = { version = "0.8.0-rc2", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-rc2", 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-rc1"
version = "0.8.0-rc2"
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.0", features = ["derive"] }
sp-consensus-babe = { version = "0.8.0-rc1", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0-rc1", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc1", path = "../../../primitives/application-crypto" }
sp-consensus-babe = { version = "0.8.0-rc2", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0-rc2", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc2", 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-rc1", path = "../../../primitives/version" }
sp-io = { version = "2.0.0-rc1", path = "../../../primitives/io" }
sp-inherents = { version = "2.0.0-rc1", path = "../../../primitives/inherents" }
sp-timestamp = { version = "2.0.0-rc1", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-rc1", path = "../../telemetry" }
sc-keystore = { version = "2.0.0-rc1", path = "../../keystore" }
sc-client-api = { version = "2.0.0-rc1", path = "../../api" }
sc-consensus-epochs = { version = "0.8.0-rc1", path = "../epochs" }
sp-api = { version = "2.0.0-rc1", path = "../../../primitives/api" }
sp-block-builder = { version = "2.0.0-rc1", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "2.0.0-rc1", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-rc1", path = "../../../primitives/consensus/common" }
sp-consensus-vrf = { version = "0.8.0-rc1", path = "../../../primitives/consensus/vrf" }
sc-consensus-uncles = { version = "0.8.0-rc1", path = "../uncles" }
sc-consensus-slots = { version = "0.8.0-rc1", path = "../slots" }
sp-runtime = { version = "2.0.0-rc1", path = "../../../primitives/runtime" }
fork-tree = { version = "2.0.0-rc1", path = "../../../utils/fork-tree" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc1"}
sp-version = { version = "2.0.0-rc2", path = "../../../primitives/version" }
sp-io = { version = "2.0.0-rc2", path = "../../../primitives/io" }
sp-inherents = { version = "2.0.0-rc2", path = "../../../primitives/inherents" }
sp-timestamp = { version = "2.0.0-rc2", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-rc2", path = "../../telemetry" }
sc-keystore = { version = "2.0.0-rc2", path = "../../keystore" }
sc-client-api = { version = "2.0.0-rc2", path = "../../api" }
sc-consensus-epochs = { version = "0.8.0-rc2", path = "../epochs" }
sp-api = { version = "2.0.0-rc2", path = "../../../primitives/api" }
sp-block-builder = { version = "2.0.0-rc2", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "2.0.0-rc2", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-rc2", path = "../../../primitives/consensus/common" }
sp-consensus-vrf = { version = "0.8.0-rc2", path = "../../../primitives/consensus/vrf" }
sc-consensus-uncles = { version = "0.8.0-rc2", path = "../uncles" }
sc-consensus-slots = { version = "0.8.0-rc2", path = "../slots" }
sp-runtime = { version = "2.0.0-rc2", path = "../../../primitives/runtime" }
fork-tree = { version = "2.0.0-rc2", path = "../../../utils/fork-tree" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc2"}
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-rc1", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-rc1", path = "../../executor" }
sc-network = { version = "0.8.0-rc1", path = "../../network" }
sc-network-test = { version = "0.8.0-rc1", path = "../../network/test" }
sc-service = { version = "0.8.0-rc1", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-rc1", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0-rc1", path = "../../block-builder" }
sp-keyring = { version = "2.0.0-rc2", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-rc2", path = "../../executor" }
sc-network = { version = "0.8.0-rc2", path = "../../network" }
sc-network-test = { version = "0.8.0-rc2", path = "../../network/test" }
sc-service = { version = "0.8.0-rc2", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-rc2", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0-rc2", path = "../../block-builder" }
env_logger = "0.7.0"
tempfile = "3.1.0"
+15 -15
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-babe-rpc"
version = "0.8.0-rc1"
version = "0.8.0-rc2"
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-rc1", path = "../" }
sc-rpc-api = { version = "0.8.0-rc1", path = "../../../rpc-api" }
sc-consensus-babe = { version = "0.8.0-rc2", path = "../" }
sc-rpc-api = { version = "0.8.0-rc2", path = "../../../rpc-api" }
jsonrpc-core = "14.0.3"
jsonrpc-core-client = "14.0.5"
jsonrpc-derive = "14.0.3"
sp-consensus-babe = { version = "0.8.0-rc1", path = "../../../../primitives/consensus/babe" }
sp-consensus-babe = { version = "0.8.0-rc2", path = "../../../../primitives/consensus/babe" }
serde = { version = "1.0.104", features=["derive"] }
sp-blockchain = { version = "2.0.0-rc1", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc1", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8.0-rc1", path = "../../epochs" }
sp-blockchain = { version = "2.0.0-rc2", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc2", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8.0-rc2", path = "../../epochs" }
futures = { version = "0.3.4", features = ["compat"] }
derive_more = "0.99.2"
sp-api = { version = "2.0.0-rc1", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8.0-rc1", path = "../../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc1", path = "../../../../primitives/core" }
sc-keystore = { version = "2.0.0-rc1", path = "../../../keystore" }
sp-api = { version = "2.0.0-rc2", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8.0-rc2", path = "../../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc2", path = "../../../../primitives/core" }
sc-keystore = { version = "2.0.0-rc2", path = "../../../keystore" }
[dev-dependencies]
sc-consensus = { version = "0.8.0-rc1", path = "../../../consensus/common" }
sc-consensus = { version = "0.8.0-rc2", path = "../../../consensus/common" }
serde_json = "1.0.50"
sp-application-crypto = { version = "2.0.0-rc1", path = "../../../../primitives/application-crypto" }
sp-keyring = { version = "2.0.0-rc1", path = "../../../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc1", path = "../../../../test-utils/runtime/client" }
sp-application-crypto = { version = "2.0.0-rc2", path = "../../../../primitives/application-crypto" }
sp-keyring = { version = "2.0.0-rc2", path = "../../../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc2", 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-rc1"
version = "0.8.0-rc2"
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-rc1", path = "../../api" }
sp-blockchain = { version = "2.0.0-rc1", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc1", path = "../../../primitives/runtime" }
sp-consensus = { version = "0.8.0-rc1", path = "../../../primitives/consensus/common" }
sc-client-api = { version = "2.0.0-rc2", path = "../../api" }
sp-blockchain = { version = "2.0.0-rc2", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc2", path = "../../../primitives/runtime" }
sp-consensus = { version = "0.8.0-rc2", path = "../../../primitives/consensus/common" }
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-epochs"
version = "0.8.0-rc1"
version = "0.8.0-rc2"
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.0", features = ["derive"] }
parking_lot = "0.10.0"
fork-tree = { version = "2.0.0-rc1", path = "../../../utils/fork-tree" }
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-rc1"}
sp-blockchain = { version = "2.0.0-rc1", path = "../../../primitives/blockchain" }
sc-client-api = { path = "../../api" , version = "2.0.0-rc1"}
fork-tree = { version = "2.0.0-rc2", path = "../../../utils/fork-tree" }
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-rc2"}
sp-blockchain = { version = "2.0.0-rc2", path = "../../../primitives/blockchain" }
sc-client-api = { path = "../../api" , version = "2.0.0-rc2"}
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-manual-seal"
version = "0.8.0-rc1"
version = "0.8.0-rc2"
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-rc1" }
sc-transaction-pool = { path = "../../transaction-pool", version = "2.0.0-rc1" }
sp-blockchain = { path = "../../../primitives/blockchain", version = "2.0.0-rc1" }
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common", version = "0.8.0-rc1" }
sp-inherents = { path = "../../../primitives/inherents", version = "2.0.0-rc1" }
sp-runtime = { path = "../../../primitives/runtime", version = "2.0.0-rc1" }
sp-core = { path = "../../../primitives/core", version = "2.0.0-rc1" }
sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "2.0.0-rc1" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc1" }
sc-client-api = { path = "../../../client/api", version = "2.0.0-rc2" }
sc-transaction-pool = { path = "../../transaction-pool", version = "2.0.0-rc2" }
sp-blockchain = { path = "../../../primitives/blockchain", version = "2.0.0-rc2" }
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common", version = "0.8.0-rc2" }
sp-inherents = { path = "../../../primitives/inherents", version = "2.0.0-rc2" }
sp-runtime = { path = "../../../primitives/runtime", version = "2.0.0-rc2" }
sp-core = { path = "../../../primitives/core", version = "2.0.0-rc2" }
sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "2.0.0-rc2" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc2" }
[dev-dependencies]
sc-basic-authorship = { path = "../../basic-authorship", version = "0.8.0-rc1" }
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client", version = "2.0.0-rc1" }
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool", version = "2.0.0-rc1" }
sc-basic-authorship = { path = "../../basic-authorship", version = "0.8.0-rc2" }
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client", version = "2.0.0-rc2" }
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool", version = "2.0.0-rc2" }
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-rc1"
version = "0.8.0-rc2"
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.0", features = ["derive"] }
sp-core = { version = "2.0.0-rc1", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc1", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc1", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc1", path = "../../../primitives/api" }
sc-client-api = { version = "2.0.0-rc1", path = "../../api" }
sp-block-builder = { version = "2.0.0-rc1", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0-rc1", path = "../../../primitives/inherents" }
sp-consensus-pow = { version = "0.8.0-rc1", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8.0-rc1", path = "../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc2", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc2", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc2", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc2", path = "../../../primitives/api" }
sc-client-api = { version = "2.0.0-rc2", path = "../../api" }
sp-block-builder = { version = "2.0.0-rc2", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0-rc2", path = "../../../primitives/inherents" }
sp-consensus-pow = { version = "0.8.0-rc2", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8.0-rc2", path = "../../../primitives/consensus/common" }
log = "0.4.8"
futures = { version = "0.3.1", features = ["compat"] }
sp-timestamp = { version = "2.0.0-rc1", path = "../../../primitives/timestamp" }
sp-timestamp = { version = "2.0.0-rc2", path = "../../../primitives/timestamp" }
derive_more = "0.99.2"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc1"}
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc2"}
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-slots"
version = "0.8.0-rc1"
version = "0.8.0-rc2"
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.0" }
sc-client-api = { version = "2.0.0-rc1", path = "../../api" }
sp-core = { version = "2.0.0-rc1", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc1", path = "../../../primitives/application-crypto" }
sp-blockchain = { version = "2.0.0-rc1", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc1", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc1", path = "../../../primitives/state-machine" }
sp-api = { version = "2.0.0-rc1", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0-rc1", path = "../../telemetry" }
sp-consensus = { version = "0.8.0-rc1", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc1", path = "../../../primitives/inherents" }
sc-client-api = { version = "2.0.0-rc2", path = "../../api" }
sp-core = { version = "2.0.0-rc2", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc2", path = "../../../primitives/application-crypto" }
sp-blockchain = { version = "2.0.0-rc2", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc2", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc2", path = "../../../primitives/state-machine" }
sp-api = { version = "2.0.0-rc2", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0-rc2", path = "../../telemetry" }
sp-consensus = { version = "0.8.0-rc2", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc2", 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-rc1", path = "../../../test-utils/runtime/client" }
substrate-test-runtime-client = { version = "2.0.0-rc2", path = "../../../test-utils/runtime/client" }
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-uncles"
version = "0.8.0-rc1"
version = "0.8.0-rc2"
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-rc1", path = "../../api" }
sp-core = { version = "2.0.0-rc1", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc1", path = "../../../primitives/runtime" }
sp-authorship = { version = "2.0.0-rc1", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.8.0-rc1", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc1", path = "../../../primitives/inherents" }
sc-client-api = { version = "2.0.0-rc2", path = "../../api" }
sp-core = { version = "2.0.0-rc2", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc2", path = "../../../primitives/runtime" }
sp-authorship = { version = "2.0.0-rc2", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.8.0-rc2", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc2", path = "../../../primitives/inherents" }
log = "0.4.8"