Files
pezkuwi-sdk/bizinikiwi/pezframe/revive/dev-node/runtime/Cargo.toml
T
pezkuwichain 78095d125e 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

61 lines
1.4 KiB
TOML

[package]
name = "pez-revive-dev-runtime"
description = "A solochain dev runtime for revive."
version = "0.1.0"
license = "Apache-2.0"
authors.workspace = true
homepage.workspace = true
repository.workspace = true
edition.workspace = true
documentation.workspace = true
[dependencies]
array-bytes = { workspace = true }
codec = { workspace = true }
pezkuwi-sdk = { workspace = true, features = [
"pezkuwi-runtime-common",
"pezpallet-balances",
"pezpallet-revive",
"pezpallet-sudo",
"pezpallet-timestamp",
"pezpallet-transaction-payment",
"pezpallet-transaction-payment-rpc-runtime-api",
"pezsp-api",
"pezsp-keyring",
"pezsp-weights",
"runtime",
"teyrchains-common",
"with-tracing",
] }
pezsp-debug-derive = { workspace = true, features = ["force-debug"] }
pezsp-runtime = { workspace = true }
scale-info = { workspace = true }
serde_json = { workspace = true, default-features = false, features = [
"alloc",
] }
[build-dependencies]
pezkuwi-sdk = { optional = true, workspace = true, features = [
"bizinikiwi-wasm-builder",
] }
[features]
default = ["std"]
std = [
"codec/std",
"pezkuwi-sdk/std",
"pezsp-debug-derive/std",
"pezsp-runtime/std",
"scale-info/std",
"serde_json/std",
]
runtime-benchmarks = [
"pezkuwi-sdk/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
try-runtime = ["pezkuwi-sdk/try-runtime", "pezsp-runtime/try-runtime"]
serde = []
experimental = []
with-tracing = []
tuples-96 = []