mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 12:11:02 +00:00
03a51a0db8
* reshuffle consensus libraries * polkadot-useful type definitions for statement table * begin BftService * primary selection logic * bft service implementation without I/O * extract out `BlockImport` trait * allow bft primitives to compile on wasm * take polkadot-consensus down to the core. * test for preemption * fix test build
16 lines
505 B
TOML
16 lines
505 B
TOML
[package]
|
|
name = "polkadot-consensus"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
futures = "0.1.17"
|
|
parking_lot = "0.4"
|
|
tokio-timer = "0.1.2"
|
|
ed25519 = { path = "../../substrate/ed25519" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-statement-table = { path = "../statement-table" }
|
|
substrate-bft = { path = "../../substrate/bft" }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|