mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 19:11:02 +00:00
b3dd4e74fd
* CLI options and keystore integration * Replace multiqueue with future::mpsc * BFT gossip * Revert to app_dirs * generate_from_seed commented * Refactor event loop * Start consensus by timer * Message buffering * Minor fixes * Work around duty-roster issue. * some more minor fixes * fix compilation * more consistent formatting * make bft input stream never conclude * Minor fixes * add timestamp module to executive * more cleanups and logging * Fixed message propagation
26 lines
964 B
TOML
26 lines
964 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-core = "0.1.12"
|
|
ed25519 = { path = "../../substrate/ed25519" }
|
|
error-chain = "0.11"
|
|
log = "0.4"
|
|
polkadot-api = { path = "../api" }
|
|
polkadot-collator = { path = "../collator" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-runtime = { path = "../runtime" }
|
|
polkadot-statement-table = { path = "../statement-table" }
|
|
polkadot-transaction-pool = { path = "../transaction-pool" }
|
|
substrate-bft = { path = "../../substrate/bft" }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
substrate-runtime-support = { path = "../../substrate/runtime-support" }
|
|
substrate-network = { path = "../../substrate/network" }
|
|
substrate-keyring = { path = "../../substrate/keyring" }
|
|
substrate-client = { path = "../../substrate/client" }
|