mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
f532982623
* 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
21 lines
793 B
TOML
21 lines
793 B
TOML
[package]
|
|
name = "polkadot-api"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
error-chain = "0.11"
|
|
polkadot-executor = { path = "../executor" }
|
|
polkadot-runtime = { path = "../runtime" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-runtime-io = { path = "../../substrate/runtime-io" }
|
|
substrate-runtime-executive = { path = "../../substrate/runtime/executive" }
|
|
substrate-client = { path = "../../substrate/client" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
substrate-executor = { path = "../../substrate/executor" }
|
|
substrate-state-machine = { path = "../../substrate/state-machine" }
|
|
|
|
[dev-dependencies]
|
|
substrate-keyring = { path = "../../substrate/keyring" }
|