mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-22 04:31:02 +00:00
04fcc71809
* primitives/sr-primitives -> primitives/runtime * update
22 lines
1.0 KiB
TOML
22 lines
1.0 KiB
TOML
[package]
|
|
name = "sc-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 = "sp-core", path = "../../../primitives/core" }
|
|
sp-blockchain = { path = "../../../primitives/blockchain" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
client-api = { package = "sc-client-api", path = "../../api" }
|
|
block-builder-api = { package = "sp-block-builder", path = "../../../primitives/block-builder/runtime-api" }
|
|
inherents = { package = "sp-inherents", path = "../../../primitives/inherents" }
|
|
pow-primitives = { package = "sp-consensus-pow", path = "../../../primitives/consensus/pow" }
|
|
consensus-common = { package = "sp-consensus", path = "../../../primitives/consensus/common" }
|
|
log = "0.4.8"
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
sp-timestamp = { path = "../../../primitives/timestamp" }
|
|
derive_more = "0.99.2"
|