Skip to content

Commit be608a2

Browse files
Update sysinfo version to 0.38.0 (#22697)
This new version fixes some bugs and adds support for `NetBSD`.
1 parent bb1bcda commit be608a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/bevy_diagnostic/Cargo.toml

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

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

0 commit comments

Comments
 (0)