From c286e4f5f3f52e1f6e5047e239c4bab45dfff3d8 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Mon, 5 May 2025 07:49:23 +0200 Subject: [PATCH] Update `sysinfo` version to `0.35.0` (#19028) This release is mostly about bugfixes and API/code improvements. Pretty straightforward update. :) --- crates/bevy_diagnostic/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 92e64b7e6c..eff1710438 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -77,14 +77,14 @@ log = { version = "0.4", default-features = false } # macOS [target.'cfg(all(target_os="macos"))'.dependencies] # Some features of sysinfo are not supported by apple. This will disable those features on apple devices -sysinfo = { version = "0.34.0", optional = true, default-features = false, features = [ +sysinfo = { version = "0.35.0", optional = true, default-features = false, features = [ "apple-app-store", "system", ] } # Only include when on linux/windows/android/freebsd [target.'cfg(any(target_os = "linux", target_os = "windows", target_os = "android", target_os = "freebsd"))'.dependencies] -sysinfo = { version = "0.34.0", optional = true, default-features = false, features = [ +sysinfo = { version = "0.35.0", optional = true, default-features = false, features = [ "system", ] }