mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 04:28:01 +00:00
04fcc71809
* primitives/sr-primitives -> primitives/runtime * update
25 lines
953 B
TOML
25 lines
953 B
TOML
[package]
|
|
name = "sc-consensus-slots"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Generic slots-based utilities for consensus"
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
client-api = { package = "sc-client-api", path = "../../api" }
|
|
primitives = { package = "sp-core", path = "../../../primitives/core" }
|
|
sp-blockchain = { path = "../../../primitives/blockchain" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
sc-telemetry = { path = "../../telemetry" }
|
|
consensus_common = { package = "sp-consensus", path = "../../../primitives/consensus/common" }
|
|
inherents = { package = "sp-inherents", path = "../../../primitives/inherents" }
|
|
futures = "0.3.1"
|
|
futures-timer = "2.0"
|
|
parking_lot = "0.9.0"
|
|
log = "0.4.8"
|
|
|
|
[dev-dependencies]
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../../test/utils/runtime/client" }
|