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.
39 lines
944 B
TOML
39 lines
944 B
TOML
[package]
|
|
name = "peztest-runtime-constants"
|
|
publish = false
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Pezkuwi SDK component: test runtime constants"
|
|
documentation.workspace = true
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
smallvec = { workspace = true, default-features = true }
|
|
|
|
pezframe-support = { workspace = true }
|
|
pezkuwi-primitives = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["pezframe-support/std", "pezkuwi-primitives/std", "pezsp-runtime/std"]
|
|
runtime-benchmarks = [
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"pezframe-support/try-runtime",
|
|
"pezkuwi-primitives/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|
|
serde = []
|
|
experimental = []
|
|
tuples-96 = []
|