mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 01:41:09 +00:00
2ecffa1cd0
* Refactor sr-api to not depend on client anymore * Fix benches * Apply suggestions from code review Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Apply suggestions from code review
42 lines
2.0 KiB
TOML
42 lines
2.0 KiB
TOML
[package]
|
|
name = "substrate-consensus-aura"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Aura consensus algorithm for substrate"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
primitives = { package = "substrate-primitives", path = "../../primitives" }
|
|
app-crypto = { package = "substrate-application-crypto", path = "../../application-crypto" }
|
|
runtime_support = { package = "srml-support", path = "../../../srml/support" }
|
|
runtime_version = { package = "sr-version", path = "../../sr-version" }
|
|
runtime_io = { package = "sr-io", path = "../../sr-io" }
|
|
slots = { package = "substrate-consensus-slots", path = "../slots" }
|
|
aura_primitives = { package = "substrate-consensus-aura-primitives", path = "primitives" }
|
|
inherents = { package = "substrate-inherents", path = "../../inherents" }
|
|
srml-aura = { path = "../../../srml/aura" }
|
|
client = { package = "substrate-client", path = "../../client" }
|
|
substrate-telemetry = { path = "../../telemetry" }
|
|
keystore = { package = "substrate-keystore", path = "../../keystore" }
|
|
consensus_common = { package = "substrate-consensus-common", path = "../common" }
|
|
sr-primitives = { path = "../../sr-primitives" }
|
|
sr-api = { path = "../../sr-api" }
|
|
futures-preview = { version = "0.3.0-alpha.19", features = ["compat"] }
|
|
futures01 = { package = "futures", version = "0.1" }
|
|
futures-timer = "0.4.0"
|
|
parking_lot = "0.9.0"
|
|
log = "0.4.8"
|
|
derive_more = "0.15.0"
|
|
block-builder-api = { package = "substrate-block-builder-runtime-api", path = "../../block-builder/runtime-api" }
|
|
|
|
[dev-dependencies]
|
|
keyring = { package = "substrate-keyring", path = "../../keyring" }
|
|
substrate-executor = { path = "../../executor" }
|
|
network = { package = "substrate-network", path = "../../network", features = ["test-helpers"]}
|
|
service = { package = "substrate-service", path = "../../service" }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../test-runtime/client" }
|
|
tokio = "0.1.22"
|
|
env_logger = "0.7.0"
|
|
tempfile = "3.1.0"
|