chore: update sysinfo dependency to version 0.36.0 (#4082)

* chore: update sysinfo dependency to version 0.36.0

* fix: update sysinfo dependency to enable specific features
This commit is contained in:
Tunglies
2025-07-15 22:23:24 +08:00
committed by GitHub
parent f2317c7816
commit 17a5c4d094
2 changed files with 6 additions and 3 deletions

4
src-tauri/Cargo.lock generated
View File

@@ -6848,9 +6848,9 @@ dependencies = [
[[package]] [[package]]
name = "sysinfo" name = "sysinfo"
version = "0.35.2" version = "0.36.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c3ffa3e4ff2b324a57f7aeb3c349656c7b127c3c189520251a648102a92496e" checksum = "aab138f5c1bb35231de19049060a87977ad23e04f2303e953bc5c2947ac7dec4"
dependencies = [ dependencies = [
"libc", "libc",
"memchr", "memchr",

View File

@@ -25,7 +25,10 @@ dunce = "1.0.5"
log4rs = "1.3.0" log4rs = "1.3.0"
nanoid = "0.4" nanoid = "0.4"
chrono = "0.4.41" chrono = "0.4.41"
sysinfo = "0.35.2" sysinfo = { version = "0.36.0", default-features = false, features = [
"network",
"system",
] }
boa_engine = "0.20.0" boa_engine = "0.20.0"
serde_json = "1.0.140" serde_json = "1.0.140"
serde_yaml = "0.9.34" serde_yaml = "0.9.34"