diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 972493e22d1b1..cc9d7f1019ee0 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -27,14 +27,14 @@ const-fnv1a-hash = "1.1.0" # 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.31.0", optional = true, default-features = false, features = [ +sysinfo = { version = "0.32.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.31.0", optional = true, default-features = false, features = [ +sysinfo = { version = "0.32.0", optional = true, default-features = false, features = [ "system", ] }