mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-04 16:17:23 +00:00
1d0ad42230
* 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 * Block builder (substrate) * take polkadot-consensus down to the core. * test for preemption * fix test build * Fix wasm build * Bulid on any block * Test for block builder. * Block import tests for client. * Tidy ups * clean up block builder instantiation * justification verification logic * JustifiedHeader and import * Propert block generation for tests * Fixed rpc tests
24 lines
715 B
TOML
24 lines
715 B
TOML
[package]
|
|
name = "substrate-client"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
error-chain = "0.11"
|
|
log = "0.3"
|
|
parking_lot = "0.4"
|
|
triehash = "0.1"
|
|
hex-literal = "0.1"
|
|
ed25519 = { path = "../ed25519" }
|
|
substrate-bft = { path = "../bft" }
|
|
substrate-codec = { path = "../codec" }
|
|
substrate-executor = { path = "../executor" }
|
|
substrate-primitives = { path = "../primitives" }
|
|
substrate-runtime-io = { path = "../runtime-io" }
|
|
substrate-runtime-support = { path = "../runtime-support" }
|
|
substrate-state-machine = { path = "../state-machine" }
|
|
substrate-keyring = { path = "../../substrate/keyring" }
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime = { path = "../test-runtime" }
|