Files
pezkuwi-sdk/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml
T
pezkuwichain 2cc5880fd9 refactor: zombienet-sdk rebrand and subxt compatibility fixes
Zombienet-SDK changes:
- orchestrator: sc-chain-spec → pezsc-chain-spec
- orchestrator: sp-core → pezsp-core imports
- orchestrator: k8s-openapi v1_27 → v1_28
- provider: k8s-openapi v1_27 → v1_28
- sdk: k8s-openapi v1_27 → v1_28

Subxt vendor fixes:
- Enable std features (remove default-features = false)
- Fix lifetime annotations for Rust 2024 compatibility
- Fix ecdsa/sr25519 password type conversions
- Fix RecoveryId API change (i32::from → to_i32)

Dependencies:
- wasmtime: 35.0.0 → 37.0.0 (security fix)
- tracing-subscriber: 0.3.18 → 0.3.20 (security fix)
- thiserror: 1.0.64 → 2.0.17

Note: ring 0.16.20 vulnerability remains - requires libp2p 0.56
upgrade which needs extensive pezsc-network API changes.
2025-12-23 09:37:12 +03:00

50 lines
1.5 KiB
TOML

[package]
name = "zombienet-orchestrator"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
publish = true
license.workspace = true
repository.workspace = true
description = "Zombienet Orchestrator, drive network spwan through providers"
keywords = ["orchestrator", "sdk", "zombienet"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
fancy-regex = { workspace = true }
futures = { workspace = true }
glob-match = { workspace = true }
hex = { workspace = true }
libp2p = { workspace = true }
libsecp256k1 = { workspace = true }
multiaddr = { workspace = true }
pezkuwi-subxt = { workspace = true }
pezkuwi-subxt-signer = { workspace = true }
rand = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["arbitrary_precision"] }
sha2 = { workspace = true, default-features = false }
pezsp-core = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["time"] }
tracing = { workspace = true }
uuid = { workspace = true }
erased-serde = { workspace = true }
pezsc-chain-spec = { workspace = true }
# Zombienet deps
configuration = { workspace = true }
prom-metrics-parser = { workspace = true }
provider = { workspace = true }
support = { workspace = true }
[dev-dependencies]
lazy_static = { workspace = true }
toml = { workspace = true }