From e099ef8df6f5f5ecb8df1b7607a91f0b3d6a9e8b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Oct 2025 23:01:42 +0000 Subject: [PATCH] fix(deps): bump sysinfo from 0.33.1 to 0.36.1 Bumps [sysinfo](https://github.com/GuillaumeGomez/sysinfo) from 0.33.1 to 0.36.1. - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/main/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/compare/v0.33.1...v0.36.1) --- updated-dependencies: - dependency-name: sysinfo dependency-version: 0.36.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 30 +++++++++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 73a6f2ea8f..6c14ecf10b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -106,7 +106,7 @@ dependencies = [ "shellexpand", "strum 0.27.2", "syntect", - "sysinfo", + "sysinfo 0.36.1", "tempfile", "thiserror 2.0.17", "time", @@ -1544,7 +1544,7 @@ dependencies = [ "strum 0.27.2", "syn 2.0.107", "syntect", - "sysinfo", + "sysinfo 0.36.1", "tempfile", "thiserror 2.0.17", "time", @@ -4685,7 +4685,7 @@ dependencies = [ "nix 0.29.0", "ntapi", "procfs", - "sysinfo", + "sysinfo 0.33.1", "web-time", "windows 0.56.0", ] @@ -5014,6 +5014,16 @@ dependencies = [ "objc2-core-foundation", ] +[[package]] +name = "objc2-io-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15" +dependencies = [ + "libc", + "objc2-core-foundation", +] + [[package]] name = "objc2-io-surface" version = "0.3.2" @@ -7085,6 +7095,20 @@ dependencies = [ "windows 0.57.0", ] +[[package]] +name = "sysinfo" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "252800745060e7b9ffb7b2badbd8b31cfa4aa2e61af879d0a3bf2a317c20217d" +dependencies = [ + "libc", + "memchr", + "ntapi", + "objc2-core-foundation", + "objc2-io-kit", + "windows 0.61.3", +] + [[package]] name = "system-deps" version = "6.2.2" diff --git a/Cargo.toml b/Cargo.toml index 7120e92c82..ce33274fb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -107,7 +107,7 @@ strip-ansi-escapes = "0.2.1" strum = { version = "0.27.1", features = ["derive"] } syn = "2.0.101" syntect = "5.2.0" -sysinfo = "0.33.1" +sysinfo = "0.36.1" tempfile = "3.18.0" thiserror = "2.0.12" time = { version = "0.3.39", features = ["parsing", "formatting", "local-offset", "macros", "serde"] }