Prepping release of alpha.6 (#5629)

* bumping version

* cargo update

* adding changelog
This commit is contained in:
Benjamin Kampmann
2020-04-14 21:41:49 +02:00
committed by GitHub
parent 889a9763dd
commit 51f9bb3c0e
177 changed files with 2307 additions and 2271 deletions
+26 -26
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-aura"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Aura consensus algorithm for substrate"
edition = "2018"
@@ -8,41 +8,41 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-alpha.5", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0-alpha.5", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0-alpha.5", path = "../../../client/block-builder" }
sc-client = { version = "0.8.0-alpha.5", path = "../../" }
sc-client-api = { version = "2.0.0-alpha.5", path = "../../api" }
sp-application-crypto = { version = "2.0.0-alpha.6", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0-alpha.6", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0-alpha.6", path = "../../../client/block-builder" }
sc-client = { version = "0.8.0-alpha.6", path = "../../" }
sc-client-api = { version = "2.0.0-alpha.6", path = "../../api" }
codec = { package = "parity-scale-codec", version = "1.3.0" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/common" }
sp-consensus = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/common" }
derive_more = "0.99.2"
futures = "0.3.4"
futures-timer = "3.0.1"
sp-inherents = { version = "2.0.0-alpha.5", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0-alpha.5", path = "../../keystore" }
sp-inherents = { version = "2.0.0-alpha.6", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0-alpha.6", path = "../../keystore" }
log = "0.4.8"
parking_lot = "0.10.0"
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../primitives/blockchain" }
sp-io = { version = "2.0.0-alpha.5", path = "../../../primitives/io" }
sp-version = { version = "2.0.0-alpha.5", path = "../../../primitives/version" }
sc-consensus-slots = { version = "0.8.0-alpha.5", path = "../slots" }
sp-api = { version = "2.0.0-alpha.5", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-alpha.5", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-alpha.5", path = "../../telemetry" }
sp-core = { version = "2.0.0-alpha.6", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../../primitives/blockchain" }
sp-io = { version = "2.0.0-alpha.6", path = "../../../primitives/io" }
sp-version = { version = "2.0.0-alpha.6", path = "../../../primitives/version" }
sc-consensus-slots = { version = "0.8.0-alpha.6", path = "../slots" }
sp-api = { version = "2.0.0-alpha.6", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-alpha.6", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-alpha.6", path = "../../telemetry" }
[dev-dependencies]
sp-keyring = { version = "2.0.0-alpha.5", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-alpha.5", path = "../../executor" }
sc-network = { version = "0.8.0-alpha.5", path = "../../network" }
sp-keyring = { version = "2.0.0-alpha.6", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-alpha.6", path = "../../executor" }
sc-network = { version = "0.8.0-alpha.6", path = "../../network" }
sc-network-test = { version = "0.8.0-dev", path = "../../network/test" }
sc-service = { version = "0.8.0-alpha.5", path = "../../service" }
sc-service = { version = "0.8.0-alpha.6", path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
env_logger = "0.7.0"
tempfile = "3.1.0"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+30 -30
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-babe"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "BABE consensus algorithm for substrate"
edition = "2018"
@@ -9,33 +9,36 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
documentation = "https://docs.rs/sc-consensus-babe"
[package.metadata.docs.rs]
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-alpha.5", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-alpha.5", path = "../../../primitives/application-crypto" }
sp-consensus-babe = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0-alpha.6", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0-alpha.6", 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-alpha.5", path = "../../../primitives/version" }
sp-io = { version = "2.0.0-alpha.5", path = "../../../primitives/io" }
sp-inherents = { version = "2.0.0-alpha.5", path = "../../../primitives/inherents" }
sp-timestamp = { version = "2.0.0-alpha.5", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-alpha.5", path = "../../telemetry" }
sc-keystore = { version = "2.0.0-alpha.5", path = "../../keystore" }
sc-client-api = { version = "2.0.0-alpha.5", path = "../../api" }
sc-client = { version = "0.8.0-alpha.5", path = "../../" }
sc-consensus-epochs = { version = "0.8.0-alpha.5", path = "../epochs" }
sp-api = { version = "2.0.0-alpha.5", path = "../../../primitives/api" }
sp-block-builder = { version = "2.0.0-alpha.5", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/common" }
sp-consensus-vrf = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/vrf" }
sc-consensus-uncles = { version = "0.8.0-alpha.5", path = "../uncles" }
sc-consensus-slots = { version = "0.8.0-alpha.5", path = "../slots" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
fork-tree = { version = "2.0.0-alpha.5", path = "../../../utils/fork-tree" }
sp-version = { version = "2.0.0-alpha.6", path = "../../../primitives/version" }
sp-io = { version = "2.0.0-alpha.6", path = "../../../primitives/io" }
sp-inherents = { version = "2.0.0-alpha.6", path = "../../../primitives/inherents" }
sp-timestamp = { version = "2.0.0-alpha.6", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0-alpha.6", path = "../../telemetry" }
sc-keystore = { version = "2.0.0-alpha.6", path = "../../keystore" }
sc-client-api = { version = "2.0.0-alpha.6", path = "../../api" }
sc-client = { version = "0.8.0-alpha.6", path = "../../" }
sc-consensus-epochs = { version = "0.8.0-alpha.6", path = "../epochs" }
sp-api = { version = "2.0.0-alpha.6", path = "../../../primitives/api" }
sp-block-builder = { version = "2.0.0-alpha.6", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/common" }
sp-consensus-vrf = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/vrf" }
sc-consensus-uncles = { version = "0.8.0-alpha.6", path = "../uncles" }
sc-consensus-slots = { version = "0.8.0-alpha.6", path = "../slots" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
fork-tree = { version = "2.0.0-alpha.6", path = "../../../utils/fork-tree" }
futures = "0.3.4"
futures-timer = "3.0.1"
parking_lot = "0.10.0"
@@ -47,18 +50,15 @@ pdqselect = "0.1.0"
derive_more = "0.99.2"
[dev-dependencies]
sp-keyring = { version = "2.0.0-alpha.5", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-alpha.5", path = "../../executor" }
sc-network = { version = "0.8.0-alpha.5", path = "../../network" }
sp-keyring = { version = "2.0.0-alpha.6", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8.0-alpha.6", path = "../../executor" }
sc-network = { version = "0.8.0-alpha.6", path = "../../network" }
sc-network-test = { version = "0.8.0-dev", path = "../../network/test" }
sc-service = { version = "0.8.0-alpha.5", path = "../../service" }
sc-service = { version = "0.8.0-alpha.6", path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0-alpha.5", path = "../../block-builder" }
sc-block-builder = { version = "0.8.0-alpha.6", path = "../../block-builder" }
env_logger = "0.7.0"
tempfile = "3.1.0"
[features]
test-helpers = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+15 -15
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-babe-rpc"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "RPC extensions for the BABE consensus algorithm"
edition = "2018"
@@ -8,28 +8,28 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-consensus-babe = { version = "0.8.0-alpha.5", path = "../" }
sc-consensus-babe = { version = "0.8.0-alpha.6", path = "../" }
jsonrpc-core = "14.0.3"
jsonrpc-core-client = "14.0.5"
jsonrpc-derive = "14.0.3"
sp-consensus-babe = { version = "0.8.0-alpha.5", path = "../../../../primitives/consensus/babe" }
sp-consensus-babe = { version = "0.8.0-alpha.6", path = "../../../../primitives/consensus/babe" }
serde = { version = "1.0.104", features=["derive"] }
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8.0-alpha.5", path = "../../epochs" }
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8.0-alpha.6", path = "../../epochs" }
futures = "0.3.4"
derive_more = "0.99.2"
sp-api = { version = "2.0.0-alpha.5", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-alpha.5", path = "../../../../primitives/core" }
sc-keystore = { version = "2.0.0-alpha.5", path = "../../../keystore" }
sp-api = { version = "2.0.0-alpha.6", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8.0-alpha.6", path = "../../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-alpha.6", path = "../../../../primitives/core" }
sc-keystore = { version = "2.0.0-alpha.6", path = "../../../keystore" }
[dev-dependencies]
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../../test-utils/runtime/client" }
sp-application-crypto = { version = "2.0.0-alpha.5", path = "../../../../primitives/application-crypto" }
sp-keyring = { version = "2.0.0-alpha.5", path = "../../../../primitives/keyring" }
sp-application-crypto = { version = "2.0.0-alpha.6", path = "../../../../primitives/application-crypto" }
sp-keyring = { version = "2.0.0-alpha.6", path = "../../../../primitives/keyring" }
tempfile = "3.1.0"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-epochs"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic epochs-based utilities for consensus"
edition = "2018"
@@ -8,13 +8,13 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
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-alpha.5", path = "../../../utils/fork-tree" }
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-alpha.5"}
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../primitives/blockchain" }
sc-client-api = { path = "../../api" , version = "2.0.0-alpha.5"}
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
fork-tree = { version = "2.0.0-alpha.6", path = "../../../utils/fork-tree" }
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-alpha.6"}
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../../primitives/blockchain" }
sc-client-api = { path = "../../api" , version = "2.0.0-alpha.6"}
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-manual-seal"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Manual sealing engine for Substrate"
edition = "2018"
@@ -8,6 +8,9 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
derive_more = "0.99.2"
futures = "0.3.4"
@@ -19,22 +22,19 @@ parking_lot = "0.10.0"
serde = { version = "1.0", features=["derive"] }
assert_matches = "1.3.0"
sc-client = { path = "../../../client" , version = "0.8.0-alpha.5"}
sc-client-api = { path = "../../../client/api" , version = "2.0.0-alpha.5"}
sc-transaction-pool = { path = "../../transaction-pool" , version = "2.0.0-alpha.5"}
sp-blockchain = { path = "../../../primitives/blockchain" , version = "2.0.0-alpha.5"}
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common" , version = "0.8.0-alpha.5"}
sp-inherents = { path = "../../../primitives/inherents" , version = "2.0.0-alpha.5"}
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-alpha.5"}
sp-transaction-pool = { path = "../../../primitives/transaction-pool" , version = "2.0.0-alpha.5"}
sc-client = { path = "../../../client" , version = "0.8.0-alpha.6"}
sc-client-api = { path = "../../../client/api" , version = "2.0.0-alpha.6"}
sc-transaction-pool = { path = "../../transaction-pool" , version = "2.0.0-alpha.6"}
sp-blockchain = { path = "../../../primitives/blockchain" , version = "2.0.0-alpha.6"}
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common" , version = "0.8.0-alpha.6"}
sp-inherents = { path = "../../../primitives/inherents" , version = "2.0.0-alpha.6"}
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-alpha.6"}
sp-transaction-pool = { path = "../../../primitives/transaction-pool" , version = "2.0.0-alpha.6"}
[dev-dependencies]
sc-basic-authorship = { path = "../../basic-authorship" , version = "0.8.0-alpha.5"}
sc-basic-authorship = { path = "../../basic-authorship" , version = "0.8.0-alpha.6"}
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" , version = "2.0.0-dev"}
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool" , version = "2.0.0-dev"}
tokio = { version = "0.2", features = ["rt-core", "macros"] }
env_logger = "0.7.0"
tempfile = "3.1.0"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+17 -17
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-pow"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "PoW consensus algorithm for substrate"
edition = "2018"
@@ -8,21 +8,21 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-alpha.5", path = "../../../primitives/api" }
sc-client-api = { version = "2.0.0-alpha.5", path = "../../api" }
sp-block-builder = { version = "2.0.0-alpha.5", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0-alpha.5", path = "../../../primitives/inherents" }
sp-consensus-pow = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/common" }
log = "0.4.8"
futures = { version = "0.3.1", features = ["compat"] }
sp-timestamp = { version = "2.0.0-alpha.5", path = "../../../primitives/timestamp" }
derive_more = "0.99.2"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
sp-core = { version = "2.0.0-alpha.6", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-alpha.6", path = "../../../primitives/api" }
sc-client-api = { version = "2.0.0-alpha.6", path = "../../api" }
sp-block-builder = { version = "2.0.0-alpha.6", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0-alpha.6", path = "../../../primitives/inherents" }
sp-consensus-pow = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/common" }
log = "0.4.8"
futures = { version = "0.3.1", features = ["compat"] }
sp-timestamp = { version = "2.0.0-alpha.6", path = "../../../primitives/timestamp" }
derive_more = "0.99.2"
+13 -13
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-slots"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic slots-based utilities for consensus"
edition = "2018"
@@ -9,17 +9,20 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0" }
sc-client-api = { version = "2.0.0-alpha.5", path = "../../api" }
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-alpha.5", path = "../../../primitives/state-machine" }
sp-api = { version = "2.0.0-alpha.5", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0-alpha.5", path = "../../telemetry" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-alpha.5", path = "../../../primitives/inherents" }
sc-client-api = { version = "2.0.0-alpha.6", path = "../../api" }
sp-core = { version = "2.0.0-alpha.6", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-alpha.6", path = "../../../primitives/state-machine" }
sp-api = { version = "2.0.0-alpha.6", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0-alpha.6", path = "../../telemetry" }
sp-consensus = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-alpha.6", path = "../../../primitives/inherents" }
futures = "0.3.4"
futures-timer = "3.0.1"
parking_lot = "0.10.0"
@@ -27,6 +30,3 @@ log = "0.4.8"
[dev-dependencies]
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-uncles"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic uncle inclusion utilities for consensus"
edition = "2018"
@@ -8,14 +8,14 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies]
sc-client-api = { version = "2.0.0-alpha.5", path = "../../api" }
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
sp-authorship = { version = "2.0.0-alpha.5", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-alpha.5", path = "../../../primitives/inherents" }
log = "0.4.8"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0-alpha.6", path = "../../api" }
sp-core = { version = "2.0.0-alpha.6", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
sp-authorship = { version = "2.0.0-alpha.6", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0-alpha.6", path = "../../../primitives/inherents" }
log = "0.4.8"