mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 11:57:56 +00:00
411b8f96d4
* Add an error type to Babe * Add an error type to PoW * Simplify error enum variant names * Update core/consensus/babe/src/lib.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Add missing newline * Split up DataProvider into CreateInherents and CheckInherents
20 lines
884 B
TOML
20 lines
884 B
TOML
[package]
|
|
name = "substrate-consensus-pow"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "PoW consensus algorithm for substrate"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
|
|
primitives = { package = "substrate-primitives", path = "../../primitives" }
|
|
sr-primitives = { path = "../../sr-primitives" }
|
|
client = { package = "substrate-client", path = "../../client" }
|
|
srml-timestamp = { path = "../../../srml/timestamp" }
|
|
inherents = { package = "substrate-inherents", path = "../../inherents" }
|
|
pow-primitives = { package = "substrate-consensus-pow-primitives", path = "primitives" }
|
|
consensus-common = { package = "substrate-consensus-common", path = "../common" }
|
|
log = "0.4.8"
|
|
futures-preview = { version = "0.3.0-alpha.19", features = ["compat"] }
|
|
derive_more = "0.15.0"
|