cm-dashboard/shared/Cargo.toml
Christoffer Martinsson caba78004e
All checks were successful
Build and Release / build-and-release (push) Successful in 2m6s
Fix empty Storage section by properly aliasing command types
v0.1.220 broke disk collector by changing the import from
std::process::Command to tokio::process::Command, but lines 193 and
767 explicitly used std::process::Command::new() which silently failed.

Solution: Import both as aliases (TokioCommand/StdCommand) and use
appropriate type for each operation - async commands use TokioCommand
with run_command_with_timeout, sync commands use StdCommand with
system timeout wrapper.

Fixes: Empty Storage section after v0.1.220 deployment
Bump version to v0.1.221
2025-11-29 21:29:33 +01:00

10 lines
217 B
TOML

[package]
name = "cm-dashboard-shared"
version = "0.1.221"
edition = "2021"
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
chrono = { workspace = true }
thiserror = { workspace = true }