diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-12-19 15:26:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-19 15:26:20 +0100 |
| commit | bfbe72ed02afa7ae4e3ab820f9139b12323bb30d (patch) | |
| tree | 2e09bd70d7ef7e7dc059d963fe5c599855a89a8d | |
| parent | 57cbd078f2748d9af7ef76694becc7c9096140b9 (diff) | |
| parent | c28e3e36b5ba9813be8d9d2968d63d3479717c16 (diff) | |
| download | rust-bfbe72ed02afa7ae4e3ab820f9139b12323bb30d.tar.gz rust-bfbe72ed02afa7ae4e3ab820f9139b12323bb30d.zip | |
Rollup merge of #134502 - SergioGasquez:feat/libc-0.2.169, r=tgross35
Update std libc version to 0.2.169 Bumps `libc` to the latest release version [0.2.169](https://github.com/rust-lang/libc/releases/tag/0.2.169) which includes several fixes and additions, including mirroring `c_char` configuration (https://github.com/rust-lang/rust/pull/132975) for many targets.
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | library/Cargo.lock | 4 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5cfd7cdcaa9..3f05b44ccfa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2012,9 +2012,9 @@ checksum = "baff4b617f7df3d896f97fe922b64817f6cd9a756bb81d40f8883f2f66dcb401" [[package]] name = "libc" -version = "0.2.168" +version = "0.2.169" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d" +checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" [[package]] name = "libdbus-sys" diff --git a/library/Cargo.lock b/library/Cargo.lock index fd450c7d3dd..2026cd584cc 100644 --- a/library/Cargo.lock +++ b/library/Cargo.lock @@ -158,9 +158,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.168" +version = "0.2.169" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d" +checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" dependencies = [ "rustc-std-workspace-core", ] diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index ca8b6af0565..f43dcc1630c 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -34,7 +34,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.167", default-features = false, features = [ +libc = { version = "0.2.169", default-features = false, features = [ 'rustc-dep-of-std', ], public = true } |
