8c4fcb3288
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
64 lines
2.4 KiB
TOML
64 lines
2.4 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",
|
|
"pezsp-consensus-babe/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-keyring/runtime-benchmarks",
|
|
]
|