Files
pezkuwi-sdk/pezbridges/primitives/test-utils/Cargo.toml
T
pezkuwichain bd2d665c4e 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

66 lines
1.8 KiB
TOML

[package]
name = "pezbp-test-utils"
version = "0.7.0"
description = "Utilities for testing bizinikiwi-based runtime bridge code"
authors.workspace = true
edition.workspace = true
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
repository.workspace = true
documentation.workspace = true
homepage = { workspace = true }
[lints]
workspace = true
[dependencies]
codec = { workspace = true }
ed25519-dalek = { workspace = true }
finality-grandpa = { workspace = true }
pezbp-header-pez-chain = { workspace = true }
pezbp-pezkuwi-core = { workspace = true }
pezbp-runtime = { features = ["test-helpers"], workspace = true }
pezbp-teyrchains = { workspace = true }
pezsp-application-crypto = { workspace = true }
pezsp-consensus-grandpa = { workspace = true }
pezsp-core = { workspace = true }
pezsp-runtime = { workspace = true }
pezsp-std = { workspace = true }
pezsp-trie = { workspace = true }
[features]
default = ["std"]
std = [
"codec/std",
"ed25519-dalek/std",
"finality-grandpa/std",
"pezbp-header-pez-chain/std",
"pezbp-pezkuwi-core/std",
"pezbp-runtime/std",
"pezbp-teyrchains/std",
"pezsp-application-crypto/std",
"pezsp-consensus-grandpa/std",
"pezsp-core/std",
"pezsp-runtime/std",
"pezsp-std/std",
"pezsp-trie/std",
]
runtime-benchmarks = [
"pezbp-header-pez-chain/runtime-benchmarks",
"pezbp-pezkuwi-core/runtime-benchmarks",
"pezbp-runtime/runtime-benchmarks",
"pezbp-teyrchains/runtime-benchmarks",
"pezsp-application-crypto/runtime-benchmarks",
"pezsp-consensus-grandpa/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"pezsp-trie/runtime-benchmarks",
]
try-runtime = [
"pezbp-header-pez-chain/try-runtime",
"pezbp-pezkuwi-core/try-runtime",
"pezbp-runtime/try-runtime",
"pezbp-teyrchains/try-runtime",
"pezsp-consensus-grandpa/try-runtime",
"pezsp-runtime/try-runtime",
]
serde = []