sal/zinit_client/Cargo.toml
Mahmoud-Emad 423b7bfa7e feat: Update zinit-client dependency to 0.4.0
- Upgrade `zinit-client` dependency to version 0.4.0 across all
  relevant crates. This resolves potential compatibility issues
  and incorporates bug fixes and improvements from the latest
  release.

- Improve error handling and logging in `zinit-client` and
  `service_manager` to provide more informative feedback and
  prevent potential hangs during log retrieval.  Add timeout to
  prevent indefinite blocking on log retrieval.

- Update `publish-all.sh` script to correctly handle the
  `service_manager` crate during publishing.  Improves handling of
  special cases in the publishing script.

- Add `zinit-client.workspace = true` to `Cargo.toml` to ensure
  consistent dependency management across the workspace.  This
  ensures the correct version of `zinit-client` is used everywhere.
2025-07-10 11:27:59 +03:00

29 lines
665 B
TOML

[package]
name = "sal-zinit-client"
version = "0.1.0"
edition = "2021"
authors = ["PlanetFirst <info@incubaid.com>"]
description = "SAL Zinit Client - Rust interface for interacting with Zinit process supervisor daemon"
repository = "https://git.threefold.info/herocode/sal"
license = "Apache-2.0"
[dependencies]
# Core dependencies
anyhow = "1.0.98"
futures = "0.3.30"
lazy_static = "1.4.0"
log = "0.4"
serde_json = "1.0"
thiserror = "2.0.12"
tokio = { version = "1.45.0", features = ["full"] }
# Zinit client
zinit-client = "0.4.0"
# Rhai integration
rhai = { version = "1.12.0", features = ["sync"] }
[dev-dependencies]
tokio-test = "0.4.4"
tempfile = "3.5"