From 00f104235565f62a00df67c6080c632090b6fee8 Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Date: Mon, 6 May 2024 09:59:59 -0700 Subject: [PATCH] Rust: Update sysinfo crate (#3520) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/3520 I need an update sysinfo for some Windows stuff, the previous version doesn't seem to work correctly (plus the documented API has changed a bit and the examples just don't build). Reviewed By: koronthaly Differential Revision: D56913751 --- shim/third-party/rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shim/third-party/rust/Cargo.toml b/shim/third-party/rust/Cargo.toml index 3741149e152..aa70b4eb241 100644 --- a/shim/third-party/rust/Cargo.toml +++ b/shim/third-party/rust/Cargo.toml @@ -183,7 +183,7 @@ syn1 = { package = "syn", version = "1.0.109", features = ["extra-traits", "fold synstructure = "0.12" sync_wrapper = "0.1.0" sys-info = "0.9.1" -sysinfo = "0.26.8" +sysinfo = "0.30.11" take_mut = "0.2.2" tar = "0.4.38" tempfile = "3.1.0"