Skip to content

Commit 41c41bf

Browse files
Update sysinfo to 0.37.0 version (#20513)
Some internal cleanups and also some performance improvements when retrieving processes in linux... which is not used by bevy, so mostly just updating to keep it up-to-date. 😆
1 parent 7cec2c0 commit 41c41bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/bevy_diagnostic/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ log = { version = "0.4", default-features = false }
6969
# macOS
7070
[target.'cfg(all(target_os="macos"))'.dependencies]
7171
# Some features of sysinfo are not supported by apple. This will disable those features on apple devices
72-
sysinfo = { version = "0.36.0", optional = true, default-features = false, features = [
72+
sysinfo = { version = "0.37.0", optional = true, default-features = false, features = [
7373
"apple-app-store",
7474
"system",
7575
] }
7676

7777
# Only include when on linux/windows/android/freebsd
7878
[target.'cfg(any(target_os = "linux", target_os = "windows", target_os = "android", target_os = "freebsd"))'.dependencies]
79-
sysinfo = { version = "0.36.0", optional = true, default-features = false, features = [
79+
sysinfo = { version = "0.37.0", optional = true, default-features = false, features = [
8080
"system",
8181
] }
8282

0 commit comments

Comments
 (0)