Files
pezkuwi-sdk/templates/minimal/node/Cargo.toml
T
pezkuwichain bd2d665c4e fix: comprehensive feature propagation and dep:serde fixes
- 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.
2026-01-04 20:37:14 +03:00

65 lines
1.5 KiB
TOML

[package]
name = "pez-minimal-template-node"
description = "A minimal Bizinikiwi-based Bizinikiwi node, ready for hacking."
version = "0.0.0"
license = "Unlicense"
authors.workspace = true
homepage.workspace = true
repository.workspace = true
edition.workspace = true
publish = false
build = "build.rs"
documentation.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
clap = { features = ["derive"], workspace = true }
docify = { workspace = true }
futures = { features = ["thread-pool"], workspace = true }
futures-timer = { workspace = true }
jsonrpsee = { features = ["server"], workspace = true }
# Direct dependency needed (not through umbrella due to macro visibility issues)
pezsp-runtime = { workspace = true }
pez-minimal-template-runtime = { workspace = true }
pezkuwi-sdk = { workspace = true, features = [
"experimental",
"node",
"pezsp-api",
"pezsp-block-builder",
"pezsp-genesis-builder",
"pezsp-io",
"pezsp-timestamp",
] }
[build-dependencies]
pezkuwi-sdk = { workspace = true, features = ["bizinikiwi-build-script-utils"] }
[features]
default = ["std"]
std = [
"pez-minimal-template-runtime/std",
"pezkuwi-sdk/std",
"pezsp-runtime/std",
]
runtime-benchmarks = [
"pez-minimal-template-runtime/runtime-benchmarks",
"pezkuwi-sdk/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
try-runtime = [
"pez-minimal-template-runtime/try-runtime",
"pezkuwi-sdk/try-runtime",
"pezsp-runtime/try-runtime",
]
serde = []
experimental = []
with-tracing = []
tuples-96 = []