Releasing 2.0 – two dot 😮 (#7182)

Tagging the release of substrate 2.0


[ci: skip-checks]
This commit is contained in:
Benjamin Kampmann
2020-09-22 19:47:38 +02:00
committed by GitHub
parent cbf1a282b5
commit ecdc94420e
190 changed files with 1977 additions and 1920 deletions
+26 -26
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-aura"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Aura consensus algorithm for substrate"
edition = "2018"
@@ -13,37 +13,37 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc6", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8.0-rc6", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0-rc6", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0-rc6", path = "../../../client/block-builder" }
sc-client-api = { version = "2.0.0-rc6", path = "../../api" }
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8.0", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0", path = "../../../client/block-builder" }
sc-client-api = { version = "2.0.0", path = "../../api" }
codec = { package = "parity-scale-codec", version = "1.3.4" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
derive_more = "0.99.2"
futures = "0.3.4"
futures-timer = "3.0.1"
sp-inherents = { version = "2.0.0-rc6", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0-rc6", path = "../../keystore" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0", path = "../../keystore" }
log = "0.4.8"
parking_lot = "0.10.0"
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
sp-io = { version = "2.0.0-rc6", path = "../../../primitives/io" }
sp-version = { version = "2.0.0-rc6", path = "../../../primitives/version" }
sc-consensus-slots = { version = "0.8.0-rc6", path = "../slots" }
sp-api = { version = "2.0.0-rc6", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-rc6", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-rc6", path = "../../telemetry" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc6"}
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
sp-version = { version = "2.0.0", path = "../../../primitives/version" }
sc-consensus-slots = { version = "0.8.0", path = "../slots" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0"}
[dev-dependencies]
sp-keyring = { version = "2.0.0-rc6", path = "../../../primitives/keyring" }
sp-tracing = { version = "2.0.0-rc6", path = "../../../primitives/tracing" }
sc-executor = { version = "0.8.0-rc6", path = "../../executor" }
sc-network = { version = "0.8.0-rc6", path = "../../network" }
sc-network-test = { version = "0.8.0-rc6", path = "../../network/test" }
sc-service = { version = "0.8.0-rc6", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-rc6", path = "../../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
sc-executor = { version = "0.8.0", path = "../../executor" }
sc-network = { version = "0.8.0", path = "../../network" }
sc-network-test = { version = "0.8.0", path = "../../network/test" }
sc-service = { version = "0.8.0", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
tempfile = "3.1.0"
+31 -31
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-babe"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "BABE consensus algorithm for substrate"
edition = "2018"
@@ -15,32 +15,32 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.4", features = ["derive"] }
sp-consensus-babe = { version = "0.8.0-rc6", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc6", path = "../../../primitives/application-crypto" }
sp-consensus-babe = { version = "0.8.0", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0", 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-rc6", path = "../../../primitives/version" }
sp-io = { version = "2.0.0-rc6", path = "../../../primitives/io" }
sp-inherents = { version = "2.0.0-rc6", path = "../../../primitives/inherents" }
sp-timestamp = { version = "2.0.0-rc6", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-rc6", path = "../../telemetry" }
sc-keystore = { version = "2.0.0-rc6", path = "../../keystore" }
sc-client-api = { version = "2.0.0-rc6", path = "../../api" }
sc-consensus-epochs = { version = "0.8.0-rc6", path = "../epochs" }
sp-api = { version = "2.0.0-rc6", path = "../../../primitives/api" }
sp-block-builder = { version = "2.0.0-rc6", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
sp-consensus-vrf = { version = "0.8.0-rc6", path = "../../../primitives/consensus/vrf" }
sc-consensus-uncles = { version = "0.8.0-rc6", path = "../uncles" }
sc-consensus-slots = { version = "0.8.0-rc6", path = "../slots" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
sp-utils = { version = "2.0.0-rc6", path = "../../../primitives/utils" }
fork-tree = { version = "2.0.0-rc6", path = "../../../utils/fork-tree" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc6"}
sp-version = { version = "2.0.0", path = "../../../primitives/version" }
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
sc-keystore = { version = "2.0.0", path = "../../keystore" }
sc-client-api = { version = "2.0.0", path = "../../api" }
sc-consensus-epochs = { version = "0.8.0", path = "../epochs" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sp-consensus-vrf = { version = "0.8.0", path = "../../../primitives/consensus/vrf" }
sc-consensus-uncles = { version = "0.8.0", path = "../uncles" }
sc-consensus-slots = { version = "0.8.0", path = "../slots" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-utils = { version = "2.0.0", path = "../../../primitives/utils" }
fork-tree = { version = "2.0.0", path = "../../../utils/fork-tree" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0"}
futures = "0.3.4"
futures-timer = "3.0.1"
parking_lot = "0.10.0"
@@ -53,14 +53,14 @@ derive_more = "0.99.2"
retain_mut = "0.1.1"
[dev-dependencies]
sp-keyring = { version = "2.0.0-rc6", path = "../../../primitives/keyring" }
sp-tracing = { version = "2.0.0-rc6", path = "../../../primitives/tracing" }
sc-executor = { version = "0.8.0-rc6", path = "../../executor" }
sc-network = { version = "0.8.0-rc6", path = "../../network" }
sc-network-test = { version = "0.8.0-rc6", path = "../../network/test" }
sc-service = { version = "0.8.0-rc6", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-rc6", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0-rc6", path = "../../block-builder" }
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
sc-executor = { version = "0.8.0", path = "../../executor" }
sc-network = { version = "0.8.0", path = "../../network" }
sc-network-test = { version = "0.8.0", path = "../../network/test" }
sc-service = { version = "0.8.0", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
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-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "RPC extensions for the BABE consensus algorithm"
edition = "2018"
@@ -13,27 +13,27 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-consensus-babe = { version = "0.8.0-rc6", path = "../" }
sc-rpc-api = { version = "0.8.0-rc6", path = "../../../rpc-api" }
sc-consensus-babe = { version = "0.8.0", path = "../" }
sc-rpc-api = { version = "0.8.0", path = "../../../rpc-api" }
jsonrpc-core = "15.0.0"
jsonrpc-core-client = "15.0.0"
jsonrpc-derive = "15.0.0"
sp-consensus-babe = { version = "0.8.0-rc6", path = "../../../../primitives/consensus/babe" }
sp-consensus-babe = { version = "0.8.0", path = "../../../../primitives/consensus/babe" }
serde = { version = "1.0.104", features=["derive"] }
sp-blockchain = { version = "2.0.0-rc6", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8.0-rc6", path = "../../epochs" }
sp-blockchain = { version = "2.0.0", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8.0", path = "../../epochs" }
futures = { version = "0.3.4", features = ["compat"] }
derive_more = "0.99.2"
sp-api = { version = "2.0.0-rc6", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc6", path = "../../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc6", path = "../../../../primitives/application-crypto" }
sc-keystore = { version = "2.0.0-rc6", path = "../../../keystore" }
sp-api = { version = "2.0.0", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8.0", path = "../../../../primitives/consensus/common" }
sp-core = { version = "2.0.0", path = "../../../../primitives/core" }
sp-application-crypto = { version = "2.0.0", path = "../../../../primitives/application-crypto" }
sc-keystore = { version = "2.0.0", path = "../../../keystore" }
[dev-dependencies]
sc-consensus = { version = "0.8.0-rc6", path = "../../../consensus/common" }
sc-consensus = { version = "0.8.0", path = "../../../consensus/common" }
serde_json = "1.0.50"
sp-keyring = { version = "2.0.0-rc6", path = "../../../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc6", path = "../../../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0", path = "../../../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0", 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-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0-rc6", path = "../../api" }
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
sc-client-api = { version = "2.0.0", path = "../../api" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-epochs"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic epochs-based utilities for consensus"
edition = "2018"
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.4", features = ["derive"] }
parking_lot = "0.10.0"
fork-tree = { version = "2.0.0-rc6", path = "../../../utils/fork-tree" }
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-rc6"}
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
sc-client-api = { path = "../../api" , version = "2.0.0-rc6"}
fork-tree = { version = "2.0.0", path = "../../../utils/fork-tree" }
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0"}
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sc-client-api = { path = "../../api" , version = "2.0.0"}
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-manual-seal"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Manual sealing engine for Substrate"
edition = "2018"
@@ -23,27 +23,27 @@ parking_lot = "0.10.0"
serde = { version = "1.0", features=["derive"] }
assert_matches = "1.3.0"
sc-client-api = { path = "../../api", version = "2.0.0-rc6" }
sc-consensus-babe = { path = "../../consensus/babe", version = "0.8.0-rc6" }
sc-consensus-epochs = { path = "../../consensus/epochs", version = "0.8.0-rc6" }
sp-consensus-babe = { path = "../../../primitives/consensus/babe", version = "0.8.0-rc6" }
sc-keystore = { path = "../../keystore", version = "2.0.0-rc6" }
sc-client-api = { path = "../../api", version = "2.0.0" }
sc-consensus-babe = { path = "../../consensus/babe", version = "0.8.0" }
sc-consensus-epochs = { path = "../../consensus/epochs", version = "0.8.0" }
sp-consensus-babe = { path = "../../../primitives/consensus/babe", version = "0.8.0" }
sc-keystore = { path = "../../keystore", version = "2.0.0" }
sc-transaction-pool = { path = "../../transaction-pool", version = "2.0.0-rc6" }
sp-blockchain = { path = "../../../primitives/blockchain", version = "2.0.0-rc6" }
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common", version = "0.8.0-rc6" }
sp-inherents = { path = "../../../primitives/inherents", version = "2.0.0-rc6" }
sp-runtime = { path = "../../../primitives/runtime", version = "2.0.0-rc6" }
sp-core = { path = "../../../primitives/core", version = "2.0.0-rc6" }
sp-api = { path = "../../../primitives/api", version = "2.0.0-rc6" }
sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "2.0.0-rc6" }
sp-timestamp = { path = "../../../primitives/timestamp", version = "2.0.0-rc6" }
sc-transaction-pool = { path = "../../transaction-pool", version = "2.0.0" }
sp-blockchain = { path = "../../../primitives/blockchain", version = "2.0.0" }
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common", version = "0.8.0" }
sp-inherents = { path = "../../../primitives/inherents", version = "2.0.0" }
sp-runtime = { path = "../../../primitives/runtime", version = "2.0.0" }
sp-core = { path = "../../../primitives/core", version = "2.0.0" }
sp-api = { path = "../../../primitives/api", version = "2.0.0" }
sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "2.0.0" }
sp-timestamp = { path = "../../../primitives/timestamp", version = "2.0.0" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc6" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0" }
[dev-dependencies]
tokio = { version = "0.2", features = ["rt-core", "macros"] }
sc-basic-authorship = { path = "../../basic-authorship", version = "0.8.0-rc6" }
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client", version = "2.0.0-rc6" }
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool", version = "2.0.0-rc6" }
sc-basic-authorship = { path = "../../basic-authorship", version = "0.8.0" }
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client", version = "2.0.0" }
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool", version = "2.0.0" }
tempfile = "3.1.0"
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-pow"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "PoW consensus algorithm for substrate"
edition = "2018"
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.4", features = ["derive"] }
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc6", path = "../../../primitives/api" }
sc-client-api = { version = "2.0.0-rc6", path = "../../api" }
sp-block-builder = { version = "2.0.0-rc6", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0-rc6", path = "../../../primitives/inherents" }
sp-consensus-pow = { version = "0.8.0-rc6", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
sc-client-api = { version = "2.0.0", path = "../../api" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
sp-consensus-pow = { version = "0.8.0", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
log = "0.4.8"
futures = { version = "0.3.1", features = ["compat"] }
futures-timer = "3.0.1"
parking_lot = "0.10.0"
sp-timestamp = { version = "2.0.0-rc6", path = "../../../primitives/timestamp" }
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" }
derive_more = "0.99.2"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc6"}
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0"}
+13 -13
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-slots"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic slots-based utilities for consensus"
edition = "2018"
@@ -15,21 +15,21 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.4" }
sc-client-api = { version = "2.0.0-rc6", path = "../../api" }
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-rc6", path = "../../../primitives/application-crypto" }
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
sp-consensus-slots = { version = "0.8.0-rc6", path = "../../../primitives/consensus/slots" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc6", path = "../../../primitives/state-machine" }
sp-api = { version = "2.0.0-rc6", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0-rc6", path = "../../telemetry" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc6", path = "../../../primitives/inherents" }
sc-client-api = { version = "2.0.0", path = "../../api" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-consensus-slots = { version = "0.8.0", path = "../../../primitives/consensus/slots" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", 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-rc6", path = "../../../test-utils/runtime/client" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-uncles"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic uncle inclusion utilities for consensus"
edition = "2018"
@@ -13,10 +13,10 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0-rc6", path = "../../api" }
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
sp-authorship = { version = "2.0.0-rc6", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-rc6", path = "../../../primitives/inherents" }
sc-client-api = { version = "2.0.0", path = "../../api" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-authorship = { version = "2.0.0", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
log = "0.4.8"