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.
50 lines
1.2 KiB
TOML
50 lines
1.2 KiB
TOML
[package]
|
|
name = "pezsc-runtime-test"
|
|
version = "2.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
build = "build.rs"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
publish = false
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Pezkuwi SDK client component: runtime test"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
pezsp-core = { workspace = true }
|
|
pezsp-io = { features = ["improved_panic_error_reporting"], workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
pezsp-runtime-interface = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bizinikiwi-wasm-builder",
|
|
"bizinikiwi-wasm-builder?/std",
|
|
"pezsp-core/std",
|
|
"pezsp-io/std",
|
|
"pezsp-runtime-interface/std",
|
|
"pezsp-runtime/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"bizinikiwi-wasm-builder?/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime-interface/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"pezsp-runtime/try-runtime",
|
|
]
|
|
serde = []
|
|
with-tracing = []
|