From 1541a330e2eb6ac4238d52d7370b780d7d54cd24 Mon Sep 17 00:00:00 2001 From: Lalit Kumar Bhasin Date: Mon, 25 Nov 2024 19:20:32 -0800 Subject: [PATCH] attempt to fix stress test CI by pinning libc (#2344) --- stress/Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stress/Cargo.toml b/stress/Cargo.toml index 90bb6e2889..6d3dd4dd1f 100644 --- a/stress/Cargo.toml +++ b/stress/Cargo.toml @@ -50,7 +50,8 @@ rand = { version = "0.8.4", features = ["small_rng"] } tracing = { workspace = true, features = ["std"]} tracing-subscriber = { workspace = true, features = ["registry", "std"] } num-format = "0.4.4" -sysinfo = { version = "0.30.12", optional = true } +sysinfo = { version = "0.32", optional = true } +libc = "=0.2.164" # https://github.com/GuillaumeGomez/sysinfo/issues/1392 [features] -stats = ["sysinfo"] \ No newline at end of file +stats = ["sysinfo"]