bd2d665c4e
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates) - Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features - Regenerate umbrella crate with proper feature propagation - Format all TOML files with taplo This resolves check-umbrella and check-zepter CI failures.
76 lines
2.8 KiB
TOML
76 lines
2.8 KiB
TOML
[package]
|
|
name = "pezkuwi-availability-distribution"
|
|
description = "The Availability Distribution subsystem. Requests the required availability data. Also distributes availability data and chunks to requesters."
|
|
version = "7.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bench]]
|
|
name = "availability-distribution-regression-bench"
|
|
path = "benches/availability-distribution-regression-bench.rs"
|
|
harness = false
|
|
required-features = ["subsystem-benchmarks"]
|
|
|
|
[dependencies]
|
|
codec = { features = ["std"], workspace = true, default-features = true }
|
|
fatality = { workspace = true }
|
|
futures = { workspace = true }
|
|
gum = { workspace = true, default-features = true }
|
|
pezkuwi-erasure-coding = { 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-pez-node-primitives = { workspace = true, default-features = true }
|
|
pezkuwi-primitives = { workspace = true, default-features = true }
|
|
pezsc-network = { workspace = true, default-features = true }
|
|
pezsp-core = { features = ["std"], workspace = true, default-features = true }
|
|
pezsp-keystore = { workspace = true, default-features = true }
|
|
rand = { workspace = true, default-features = true }
|
|
schnellru = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
futures-timer = { workspace = true }
|
|
# pezkuwi-node-subsystem-test-helpers = { workspace = true }
|
|
# pezkuwi-primitives-test-helpers = { workspace = true }
|
|
# pezkuwi-subsystem-bench = { workspace = true }
|
|
pezsp-keyring = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
rstest = { workspace = true }
|
|
|
|
[features]
|
|
subsystem-benchmarks = []
|
|
runtime-benchmarks = [
|
|
"gum/runtime-benchmarks",
|
|
"pezkuwi-erasure-coding/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-pez-node-primitives/runtime-benchmarks",
|
|
# "pezkuwi-primitives-test-helpers/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
# "pezkuwi-subsystem-bench/runtime-benchmarks",
|
|
"pezsc-network/runtime-benchmarks",
|
|
"pezsp-keyring/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"gum/std",
|
|
"pezkuwi-erasure-coding/std",
|
|
"pezkuwi-node-network-protocol/std",
|
|
"pezkuwi-node-subsystem-util/std",
|
|
"pezkuwi-node-subsystem/std",
|
|
"pezkuwi-pez-node-primitives/std",
|
|
"pezsc-network/std",
|
|
]
|
|
serde = []
|
|
with-tracing = []
|