From bc1fcd24735ad2b5cddcf9ca71f56d5b692d6a71 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 15:48:42 +0000 Subject: [PATCH] build(deps): update rust crate sysinfo to 0.33.0 --- Cargo.lock | 10 +++++----- crates/kernel/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9319f19..811e464 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -613,7 +613,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -1727,7 +1727,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -2197,9 +2197,9 @@ dependencies = [ [[package]] name = "sysinfo" -version = "0.32.1" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af" +checksum = "948512566b1895f93b1592c7574baeb2de842f224f2aab158799ecadb8ebbb46" dependencies = [ "core-foundation-sys", "libc", @@ -2219,7 +2219,7 @@ dependencies = [ "fastrand", "once_cell", "rustix", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/crates/kernel/Cargo.toml b/crates/kernel/Cargo.toml index 6ce56e6..76d6bc7 100644 --- a/crates/kernel/Cargo.toml +++ b/crates/kernel/Cargo.toml @@ -18,7 +18,7 @@ parking_lot = "0.12.3" procfs = "0.17.0" rayon = "1.10.0" sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio"] } -sysinfo = "0.32.1" +sysinfo = "0.33.0" thiserror.workspace = true tokio.workspace = true tracing.workspace = true