Files
pezkuwi-sdk/pezcumulus/client/consensus/aura/Cargo.toml
T

161 lines
6.3 KiB
TOML

[package]
name = "pezcumulus-client-consensus-aura"
description = "AURA consensus algorithm for teyrchains"
version = "0.7.0"
authors.workspace = true
edition.workspace = true
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
[lints]
workspace = true
[dependencies]
async-trait = { workspace = true }
codec = { features = ["derive"], workspace = true, default-features = true }
futures = { workspace = true }
parking_lot = { workspace = true }
schnellru = { workspace = true }
tokio = { workspace = true, features = ["macros"] }
tracing = { workspace = true, default-features = true }
# Bizinikiwi
pezsc-client-api = { workspace = true, default-features = true }
pezsc-consensus = { workspace = true, default-features = true }
pezsc-consensus-aura = { workspace = true, default-features = true }
pezsc-consensus-babe = { workspace = true, default-features = true }
pezsc-consensus-slots = { workspace = true, default-features = true }
pezsc-network-types = { workspace = true, default-features = true }
pezsc-telemetry = { workspace = true, default-features = true }
pezsc-utils = { workspace = true, default-features = true }
pezsp-api = { workspace = true, default-features = true }
pezsp-application-crypto = { workspace = true, default-features = true }
pezsp-block-builder = { workspace = true, default-features = true }
pezsp-blockchain = { workspace = true, default-features = true }
pezsp-consensus = { workspace = true, default-features = true }
pezsp-consensus-aura = { workspace = true, default-features = true }
pezsp-core = { workspace = true, default-features = true }
pezsp-inherents = { workspace = true, default-features = true }
pezsp-keystore = { workspace = true, default-features = true }
pezsp-runtime = { workspace = true, default-features = true }
pezsp-state-machine = { workspace = true, default-features = true }
pezsp-timestamp = { workspace = true, default-features = true }
pezsp-trie = { workspace = true, default-features = true }
prometheus-endpoint = { workspace = true, default-features = true }
# Pezcumulus
pezcumulus-client-collator = { workspace = true, default-features = true }
pezcumulus-client-consensus-common = { workspace = true, default-features = true }
pezcumulus-client-consensus-proposer = { workspace = true, default-features = true }
pezcumulus-client-teyrchain-inherent = { workspace = true, default-features = true }
pezcumulus-primitives-aura = { workspace = true, default-features = true }
pezcumulus-primitives-core = { workspace = true, default-features = true }
pezcumulus-relay-chain-interface = { workspace = true, default-features = true }
# Pezkuwi
pezkuwi-node-subsystem = { workspace = true, default-features = true }
pezkuwi-node-subsystem-util = { workspace = true, default-features = true }
pezkuwi-overseer = { workspace = true, default-features = true }
pezkuwi-pez-node-primitives = { workspace = true, default-features = true }
pezkuwi-primitives = { workspace = true, default-features = true }
[dev-dependencies]
pezcumulus-test-client = { workspace = true }
pezcumulus-test-relay-sproof-builder = { workspace = true }
pezsp-keyring = { workspace = true }
pezsp-tracing = { workspace = true }
pezsp-version = { workspace = true }
rstest = { workspace = true }
[features]
runtime-benchmarks = [
"pezcumulus-client-collator/runtime-benchmarks",
"pezcumulus-client-consensus-common/runtime-benchmarks",
"pezcumulus-client-consensus-proposer/runtime-benchmarks",
"pezcumulus-client-teyrchain-inherent/runtime-benchmarks",
"pezcumulus-primitives-aura/runtime-benchmarks",
"pezcumulus-primitives-core/runtime-benchmarks",
"pezcumulus-relay-chain-interface/runtime-benchmarks",
"pezcumulus-test-client/runtime-benchmarks",
"pezcumulus-test-relay-sproof-builder/runtime-benchmarks",
"pezkuwi-node-subsystem-util/runtime-benchmarks",
"pezkuwi-node-subsystem/runtime-benchmarks",
"pezkuwi-overseer/runtime-benchmarks",
"pezkuwi-pez-node-primitives/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"pezsc-client-api/runtime-benchmarks",
"pezsc-consensus-aura/runtime-benchmarks",
"pezsc-consensus-babe/runtime-benchmarks",
"pezsc-consensus-slots/runtime-benchmarks",
"pezsc-consensus/runtime-benchmarks",
"pezsp-api/runtime-benchmarks",
"pezsp-application-crypto/runtime-benchmarks",
"pezsp-block-builder/runtime-benchmarks",
"pezsp-blockchain/runtime-benchmarks",
"pezsp-consensus-aura/runtime-benchmarks",
"pezsp-consensus/runtime-benchmarks",
"pezsp-inherents/runtime-benchmarks",
"pezsp-keyring/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"pezsp-state-machine/runtime-benchmarks",
"pezsp-timestamp/runtime-benchmarks",
"pezsp-trie/runtime-benchmarks",
"pezsp-version/runtime-benchmarks",
]
std = [
"pezcumulus-client-collator/std",
"pezcumulus-client-consensus-common/std",
"pezcumulus-client-consensus-proposer/std",
"pezcumulus-client-teyrchain-inherent/std",
"pezcumulus-relay-chain-interface/std",
"pezcumulus-test-client/std",
"pezcumulus-test-relay-sproof-builder/std",
"pezkuwi-node-subsystem-util/std",
"pezkuwi-node-subsystem/std",
"pezkuwi-overseer/std",
"pezkuwi-pez-node-primitives/std",
"pezsc-client-api/std",
"pezsc-consensus-aura/std",
"pezsc-consensus-babe/std",
"pezsc-consensus-slots/std",
"pezsc-consensus/std",
"pezsc-network-types/std",
"pezsc-telemetry/std",
"pezsc-utils/std",
"pezsp-blockchain/std",
"pezsp-consensus/std",
"pezsp-keyring/std",
"pezsp-tracing/std",
"pezsp-version/std",
"prometheus-endpoint/std",
]
try-runtime = [
"pezcumulus-client-collator/try-runtime",
"pezcumulus-client-consensus-common/try-runtime",
"pezcumulus-client-consensus-proposer/try-runtime",
"pezcumulus-client-teyrchain-inherent/try-runtime",
"pezcumulus-primitives-core/try-runtime",
"pezcumulus-test-client/try-runtime",
"pezcumulus-test-relay-sproof-builder/try-runtime",
"pezkuwi-primitives/try-runtime",
"pezsc-client-api/try-runtime",
"pezsc-consensus-aura/try-runtime",
"pezsc-consensus-babe/try-runtime",
"pezsc-consensus-slots/try-runtime",
"pezsc-consensus/try-runtime",
"pezsp-api/try-runtime",
"pezsp-block-builder/try-runtime",
"pezsp-blockchain/try-runtime",
"pezsp-consensus-aura/try-runtime",
"pezsp-consensus/try-runtime",
"pezsp-inherents/try-runtime",
"pezsp-keyring/try-runtime",
"pezsp-runtime/try-runtime",
"pezsp-timestamp/try-runtime",
"pezsp-version/try-runtime",
]
serde = []
with-tracing = []