diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-10-18 06:59:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-18 06:59:06 +0200 |
| commit | 4e9901faa9d9fc83b51cb4838d7bf1232cb632b4 (patch) | |
| tree | 04285a70ee86938e70de66d39bf41c839e24b628 | |
| parent | 02cc3a6da51f431f19b9d2ee98db1a7d8fcea16c (diff) | |
| parent | a09c54d4d34627444d4d1416930c11ffeebd0d2e (diff) | |
| download | rust-4e9901faa9d9fc83b51cb4838d7bf1232cb632b4.tar.gz rust-4e9901faa9d9fc83b51cb4838d7bf1232cb632b4.zip | |
Rollup merge of #131823 - thesummer:bump-libc-0.2.160, r=workingjubilee
Bump libc to 0.2.161 Bumps libc to the latest release version 0.2.161 which - includes libc support for the tier 3 RTEMS target - fixes segfaults on 32-bit FreeBSD targets - gets musl's `posix_spawn_file_actions_addchdir_np` for some spawn opts
| -rw-r--r-- | library/Cargo.lock | 4 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/library/Cargo.lock b/library/Cargo.lock index fe2c5fadf38..ed9e7dddf52 100644 --- a/library/Cargo.lock +++ b/library/Cargo.lock @@ -158,9 +158,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.159" +version = "0.2.161" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" +checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" dependencies = [ "rustc-std-workspace-core", ] diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index 358bd25ff1b..5f8dcde189b 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 } |
