mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 06:48:01 +00:00
32 lines
1.0 KiB
TOML
32 lines
1.0 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.1"
|
|
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" }
|
|
|
|
srml-consensus = { path = "../../../srml/consensus" }
|
|
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"
|