84 lines
2.9 KiB
TOML
84 lines
2.9 KiB
TOML
[package]
|
|
name = "pezkuwi-node-core-approval-voting-parallel"
|
|
version = "7.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Approval Voting Subsystem running approval work in parallel"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
futures = { workspace = true }
|
|
gum = { workspace = true }
|
|
itertools = { workspace = true }
|
|
|
|
pezkuwi-approval-distribution = { workspace = true, default-features = true }
|
|
pezkuwi-node-core-approval-voting = { workspace = true, default-features = true }
|
|
pezkuwi-node-metrics = { workspace = true, default-features = true }
|
|
pezkuwi-node-network-protocol = { workspace = true, default-features = true }
|
|
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 }
|
|
|
|
pezsc-keystore = { workspace = true, default-features = false }
|
|
pezsp-consensus = { workspace = true, default-features = false }
|
|
|
|
rand = { workspace = true }
|
|
rand_core = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
kvdb-memorydb = { workspace = true }
|
|
pezkuwi-node-subsystem-test-helpers = { workspace = true, default-features = true }
|
|
pezsp-consensus-babe = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-keyring = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true }
|
|
schnorrkel = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"gum/runtime-benchmarks",
|
|
"pezkuwi-approval-distribution/runtime-benchmarks",
|
|
"pezkuwi-node-core-approval-voting/runtime-benchmarks",
|
|
"pezkuwi-node-metrics/runtime-benchmarks",
|
|
"pezkuwi-node-network-protocol/runtime-benchmarks",
|
|
"pezkuwi-node-subsystem-test-helpers/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-keystore/runtime-benchmarks",
|
|
"pezsp-consensus-babe/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-keyring/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"gum/std",
|
|
"pezkuwi-approval-distribution/std",
|
|
"pezkuwi-node-core-approval-voting/std",
|
|
"pezkuwi-node-metrics/std",
|
|
"pezkuwi-node-network-protocol/std",
|
|
"pezkuwi-node-subsystem-test-helpers/std",
|
|
"pezkuwi-node-subsystem-util/std",
|
|
"pezkuwi-node-subsystem/std",
|
|
"pezkuwi-overseer/std",
|
|
"pezkuwi-pez-node-primitives/std",
|
|
"pezsc-keystore/std",
|
|
"pezsp-consensus/std",
|
|
"pezsp-tracing/std",
|
|
"rand/std",
|
|
"rand_core/std",
|
|
]
|
|
serde = []
|
|
with-tracing = []
|