From 67f11ff2bda7f57546cb4ff0a56724a5779b1b54 Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Thu, 17 Oct 2024 15:18:55 -0600 Subject: [PATCH] Update libc to 0.2.161 The main change is to fix segfaults on 32-bit FreeBSD targets. Fixes #130677 --- library/std/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index 358bd25ff1bc6..5f8dcde189bcf 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -39,7 +39,7 @@ miniz_oxide = { version = "0.7.0", optional = true, default-features = false } addr2line = { version = "0.22.0", optional = true, default-features = false } [target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies] -libc = { version = "0.2.159", default-features = false, features = [ +libc = { version = "0.2.161", default-features = false, features = [ 'rustc-dep-of-std', ], public = true }