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.
70 lines
2.0 KiB
TOML
70 lines
2.0 KiB
TOML
[package]
|
|
name = "teyrchain-template-node"
|
|
description = "A teyrchain node template built with Bizinikiwi and Pezcumulus, part of Pezkuwi Sdk."
|
|
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
|
|
|
|
[dependencies]
|
|
clap = { features = ["derive"], workspace = true }
|
|
codec = { workspace = true, default-features = true }
|
|
color-print = { workspace = true }
|
|
docify = { workspace = true }
|
|
futures = { workspace = true }
|
|
jsonrpsee = { features = ["server"], workspace = true }
|
|
log = { workspace = true, default-features = true }
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
|
|
# Direct dependency needed (not through umbrella due to macro visibility issues)
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
pezkuwi-sdk = { workspace = true, features = ["node", "pezkuwi-primitives", "pezsp-keystore", "pezsp-timestamp"] }
|
|
|
|
teyrchain-template-runtime = { workspace = true }
|
|
|
|
# Bizinikiwi
|
|
prometheus-endpoint = { workspace = true, default-features = true }
|
|
|
|
# For storage benchmarks
|
|
pezframe-benchmarking-cli = { workspace = true, optional = true }
|
|
|
|
[build-dependencies]
|
|
pezkuwi-sdk = { workspace = true, features = ["bizinikiwi-build-script-utils"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"log/std",
|
|
"pezframe-benchmarking-cli?/std",
|
|
"pezkuwi-sdk/std",
|
|
"pezsp-runtime/std",
|
|
"prometheus-endpoint/std",
|
|
"teyrchain-template-runtime/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezframe-benchmarking-cli?/runtime-benchmarks",
|
|
"pezkuwi-sdk/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"teyrchain-template-runtime/runtime-benchmarks",
|
|
]
|
|
storage-benchmark = ["pezframe-benchmarking-cli/storage-benchmark"]
|
|
try-runtime = [
|
|
"pezframe-benchmarking-cli?/try-runtime",
|
|
"pezkuwi-sdk/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"teyrchain-template-runtime/try-runtime",
|
|
]
|
|
serde = []
|
|
experimental = []
|
|
with-tracing = []
|
|
tuples-96 = []
|