From f595899021ca353ae15e582a58694ca251e17e85 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 6 Jun 2026 21:11:35 +0000 Subject: [PATCH] build(deps): update rust crate systemstat to v0.2.7 (#7538) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 16 ++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f3b8c54ed..f37ff1f9e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2012,6 +2012,16 @@ version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37" +[[package]] +name = "kstat-rs" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27964e4632377753acb0898ce6f28770d50cbca1339200ae63d700cff97b5c2b" +dependencies = [ + "libc", + "thiserror 1.0.69", +] + [[package]] name = "kstring" version = "2.0.2" @@ -3446,13 +3456,15 @@ dependencies = [ [[package]] name = "systemstat" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6e89b75de097d0c52a1dc2114e19439d55f0e2e42d32168c6df44f139dfb66f" +checksum = "a583abe520746270ffdbdaf0e3039a806f29be9d7034d66466a4839a01de0610" dependencies = [ "bytesize", + "kstat-rs", "lazy_static", "libc", + "mach2", "nom 7.1.3", "time", "winapi", diff --git a/Cargo.toml b/Cargo.toml index 6acf99a13..72818e56b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ shadow-rs = { version = "2.0.0", default-features = false, features = ["build"] # see: https://github.com/svartalf/rust-battery/issues/33 starship-battery = { version = "0.11.0", optional = true } strsim = "0.11.1" -systemstat = "=0.2.6" +systemstat = "=0.2.7" tempfile = "3.27.0" terminal_size = "0.4.4" toml = { version = "1.1.2", features = ["preserve_order"] }