From 75afe8709ad2fa133be9c8a018e6b9539881a7f7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 May 2023 22:00:00 +0000 Subject: [PATCH] fix(deps): update rust crate sysinfo to 0.29.0 --- Cargo.lock | 4 ++-- client/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 304b6358..3eff2796 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2151,9 +2151,9 @@ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" [[package]] name = "sysinfo" -version = "0.28.4" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c2f3ca6693feb29a89724516f016488e9aafc7f37264f898593ee4b942f31b" +checksum = "02f1dc6930a439cc5d154221b5387d153f8183529b07c19aca24ea31e0a167e1" dependencies = [ "cfg-if", "core-foundation-sys", diff --git a/client/Cargo.toml b/client/Cargo.toml index 7d226519..bfdb1058 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.28.4" +sysinfo = "0.29.0" tokio = {version = "1", features = ["full"]} tonic = {version = "0.9", features = ["tls"]} tower = { version = "0.4" }