From 54c7fe5ea3b031172569ae7008bf86d6260092f3 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Wed, 16 Aug 2023 05:45:47 -0400 Subject: [PATCH] deps: pin sysinfo to 0.29.8 (#1273) --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6fd66a28..b0531228 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1253,9 +1253,9 @@ dependencies = [ [[package]] name = "sysinfo" -version = "0.29.7" +version = "0.29.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "165d6d8539689e3d3bc8b98ac59541e1f21c7de7c85d60dc80e43ae0ed2113db" +checksum = "d10ed79c22663a35a255d289a7fdcb43559fc77ff15df5ce6c341809e7867528" dependencies = [ "cfg-if", "core-foundation-sys", diff --git a/Cargo.toml b/Cargo.toml index b994b7a6..86fee58e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -95,7 +95,7 @@ once_cell = "1.18.0" regex = "1.9.3" serde = { version = "1.0.183", features = ["derive"] } starship-battery = { version = "0.8.2", optional = true } -sysinfo = "=0.29.7" +sysinfo = "=0.29.8" thiserror = "1.0.44" time = { version = "0.3.25", features = ["formatting", "macros"] } toml_edit = { version = "0.19.14", features = ["serde"] }