mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-22 10:21:04 +00:00
4df27e760e
* Init epoch changes module * Initial integration of new epoch changes module for BABE * Fix all initial compile errors * rename: digest -> digests * Fix babe tests * Bump impl_version * Fix more test issues * Remove test flag for tree It unfortunately won't work for multiple crates. * Update cargo lock * Fix duplicate parking_lot version * Add missing license header
15 lines
553 B
TOML
15 lines
553 B
TOML
[package]
|
|
name = "sc-consensus-epochs"
|
|
version = "0.8.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Generic epochs-based utilities for consensus"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
|
|
parking_lot = "0.10.0"
|
|
fork-tree = { version = "2.0.0", path = "../../../utils/fork-tree" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
|
sc-client-api = { path = "../../api" }
|