Files
pezkuwi-sdk/bizinikiwi/client/executor/runtime-test/Cargo.toml
T
pezkuwichain 479010094e fix(ci): resolve all quick-checks failures
- Remove missing cli crate from workspace members
- Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml
- Fix Rust import ordering with cargo fmt
- Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
2026-01-04 17:22:12 +03:00

44 lines
1.1 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",
"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",
]