Files
pezkuwi-sdk/templates/teyrchain/node/Cargo.toml
T
pezkuwichain 267fcec12d fix: quick-checks CI failures - taplo format, zepter, umbrella
1. TOML format (taplo): 123 files reformatted using correct config
   - Command: taplo format --config .config/taplo.toml

2. Zepter feature propagation fix:
   - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature

3. generate-umbrella.py bug fix:
   - Script crashed when Cargo.toml/src didn't exist in umbrella dir
   - Added existence checks before deletion
2026-01-26 00:39:59 +03:00

75 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 = []