Files
pezkuwi-sdk/pezcumulus/zombienet/zombienet-sdk/Cargo.toml
T
pezkuwichain 267fcec12d fix: quick-checks CI failures - taplo format, zepter, umbrella
1. TOML format (taplo): 123 files reformatted using correct config
   - Command: taplo format --config .config/taplo.toml

2. Zepter feature propagation fix:
   - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature

3. generate-umbrella.py bug fix:
   - Script crashed when Cargo.toml/src didn't exist in umbrella dir
   - Added existence checks before deletion
2026-01-26 00:39:59 +03:00

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 = []