Files
pezkuwi-sdk/bizinikiwi/test-utils/runtime/client/Cargo.toml
T
pezkuwichain ea341084f0 fix: comprehensive feature propagation and dep:serde fixes
- 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.
2026-01-04 20:37:14 +03:00

69 lines
2.0 KiB
TOML

[package]
name = "bizinikiwi-test-runtime-client"
version = "2.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
publish = false
description = "Bizinikiwi utility: test runtime client"
documentation.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
bizinikiwi-test-client = { workspace = true }
bizinikiwi-test-runtime = { workspace = true }
futures = { workspace = true }
pezsc-block-builder = { workspace = true, default-features = true }
pezsc-client-api = { workspace = true, default-features = true }
pezsc-consensus = { workspace = true, default-features = true }
pezsp-api = { workspace = true, default-features = true }
pezsp-blockchain = { workspace = true, default-features = true }
pezsp-consensus = { workspace = true, default-features = true }
pezsp-core = { workspace = true, default-features = true }
pezsp-runtime = { workspace = true, default-features = true }
[dev-dependencies]
pezsp-tracing = { workspace = true, default-features = true }
[features]
bls-experimental = ["bizinikiwi-test-runtime/bls-experimental"]
runtime-benchmarks = [
"bizinikiwi-test-client/runtime-benchmarks",
"bizinikiwi-test-runtime/runtime-benchmarks",
"pezsc-block-builder/runtime-benchmarks",
"pezsc-client-api/runtime-benchmarks",
"pezsc-consensus/runtime-benchmarks",
"pezsp-api/runtime-benchmarks",
"pezsp-blockchain/runtime-benchmarks",
"pezsp-consensus/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
std = [
"bizinikiwi-test-client/std",
"pezsc-block-builder/std",
"pezsc-client-api/std",
"pezsc-consensus/std",
"pezsp-blockchain/std",
"pezsp-consensus/std",
]
try-runtime = [
"bizinikiwi-test-client/try-runtime",
"bizinikiwi-test-runtime/try-runtime",
"pezsc-block-builder/try-runtime",
"pezsc-client-api/try-runtime",
"pezsc-consensus/try-runtime",
"pezsp-api/try-runtime",
"pezsp-blockchain/try-runtime",
"pezsp-consensus/try-runtime",
"pezsp-runtime/try-runtime",
]
serde = []
with-tracing = []