ea341084f0
- 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.
57 lines
1.8 KiB
TOML
57 lines
1.8 KiB
TOML
[package]
|
|
name = "pezcumulus-zombienet-sdk-tests"
|
|
version = "0.1.0"
|
|
description = "Zomebienet-sdk tests for pezcumulus."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
documentation.workspace = true
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
log = { workspace = true }
|
|
pezkuwi-primitives = { workspace = true, default-features = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
futures = { workspace = true }
|
|
pezkuwi-zombienet-sdk = { workspace = true }
|
|
pezkuwi-zombienet-orchestrator = { workspace = true }
|
|
pezkuwi-zombienet-configuration = { workspace = true }
|
|
pezcumulus-zombienet-sdk-helpers = { workspace = true }
|
|
pezsp-statement-store = { workspace = true, default-features = true }
|
|
pezsc-statement-store = { workspace = true, default-features = true }
|
|
pezsp-keyring = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
codec = { workspace = true }
|
|
rstest = { workspace = true }
|
|
|
|
[features]
|
|
zombie-ci = []
|
|
runtime-benchmarks = [
|
|
"pezcumulus-zombienet-sdk-helpers/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezsc-statement-store/runtime-benchmarks",
|
|
"pezsp-keyring/runtime-benchmarks",
|
|
"pezsp-statement-store/runtime-benchmarks",
|
|
"pezkuwi-zombienet-orchestrator/runtime-benchmarks",
|
|
"pezkuwi-zombienet-sdk/runtime-benchmarks"
|
|
]
|
|
std = [
|
|
"anyhow/std",
|
|
"log/std",
|
|
"codec/std",
|
|
"pezcumulus-zombienet-sdk-helpers/std",
|
|
"pezkuwi-zombienet-configuration/std",
|
|
"pezkuwi-zombienet-orchestrator/std",
|
|
"pezkuwi-zombienet-sdk/std",
|
|
"pezsc-statement-store/std",
|
|
"serde/std",
|
|
"serde_json/std"
|
|
]
|
|
serde = []
|