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.
28 lines
689 B
TOML
28 lines
689 B
TOML
[package]
|
|
name = "pezkuwi-node-subsystem"
|
|
description = "Subsystem traits and message definitions and the generated overseer"
|
|
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
|
|
|
|
[dependencies]
|
|
pezkuwi-node-subsystem-types = { workspace = true, default-features = true }
|
|
pezkuwi-overseer = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezkuwi-node-subsystem-types/runtime-benchmarks",
|
|
"pezkuwi-overseer/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"pezkuwi-node-subsystem-types/std",
|
|
"pezkuwi-overseer/std",
|
|
]
|