mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 22:11:01 +00:00
70b1af7b1e
* Implement new inherent data * Fixes compilation on wasm * Fixes after rebase * Switch back to generate inherent stuff by macro * Update after rebase * Apply suggestions from code review Co-Authored-By: bkchr <bkchr@users.noreply.github.com> * Fix compilation after rebase * Address grumbles * Remove `InherentDataProviders` from `Client` * Update wasm files after rebase * Address grumbles * Fixes compilation after latest merge * Last fix
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
[package]
|
|
name = "substrate-consensus-aura"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Aura consensus algorithm for substrate"
|
|
|
|
[dependencies]
|
|
parity-codec = "2.2"
|
|
substrate-client = { path = "../../client" }
|
|
substrate-primitives = { path = "../../primitives" }
|
|
srml-support = { path = "../../../srml/support" }
|
|
sr-primitives = { path = "../../sr-primitives" }
|
|
sr-version = { path = "../../sr-version" }
|
|
sr-io = { path = "../../sr-io" }
|
|
substrate-consensus-aura-primitives = { path = "primitives" }
|
|
substrate-inherents = { path = "../../inherents" }
|
|
srml-consensus = { path = "../../../srml/consensus" }
|
|
srml-aura = { path = "../../../srml/aura" }
|
|
futures = "0.1.17"
|
|
tokio = "0.1.7"
|
|
parking_lot = "0.7.1"
|
|
error-chain = "0.12"
|
|
log = "0.3"
|
|
substrate-consensus-common = { path = "../common" }
|
|
|
|
[dev-dependencies]
|
|
substrate-keyring = { path = "../../keyring" }
|
|
substrate-executor = { path = "../../executor" }
|
|
substrate-network = { path = "../../network", features = ["test-helpers"]}
|
|
substrate-service = { path = "../../service" }
|
|
substrate-test-client = { path = "../../test-client" }
|
|
env_logger = "0.4"
|