From 255f94432d37737f56b01abadc43c4b7bc82ce7f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 14:16:47 +0000 Subject: [PATCH] Update Rust crate sysinfo to 0.30.5 --- Cargo.lock | 16 +++++++++++++--- client/Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ba0d8b67..79e5d0c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2161,9 +2161,9 @@ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" [[package]] name = "sysinfo" -version = "0.29.11" +version = "0.30.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd727fc423c2060f6c92d9534cef765c65a6ed3f428a03d7def74a8c4348e666" +checksum = "1fb4f3438c8f6389c864e61221cbc97e9bca98b4daf39a5beb7bea660f528bb2" dependencies = [ "cfg-if", "core-foundation-sys", @@ -2171,7 +2171,7 @@ dependencies = [ "ntapi", "once_cell", "rayon", - "winapi", + "windows", ] [[package]] @@ -2814,6 +2814,16 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "windows" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" +dependencies = [ + "windows-core", + "windows-targets 0.52.0", +] + [[package]] name = "windows-core" version = "0.52.0" diff --git a/client/Cargo.toml b/client/Cargo.toml index 6447c46b..78117aa7 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -35,7 +35,7 @@ reqwest = {version = "0.11", features = ["json", "rustls-tls", "brotli", "gzip", serde = {version = "1.0", default-features = false, features = ["derive", "alloc"]} serde_json = {version = "1.0", default-features = false, features = ["alloc"]} stat_common = {path = "../common"} -sysinfo = "0.29.0" +sysinfo = "0.30.5" tokio = {version = "1", features = ["full"]} tonic = {version = "0.9", features = ["tls"]} tower = { version = "0.4" }