Skip to content

Commit bfbe72e

Browse files
authored
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 (#132975) for many targets.
2 parents 57cbd07 + c28e3e3 commit bfbe72e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -2012,9 +2012,9 @@ checksum = "baff4b617f7df3d896f97fe922b64817f6cd9a756bb81d40f8883f2f66dcb401"
20122012

20132013
[[package]]
20142014
name = "libc"
2015-
version = "0.2.168"
2015+
version = "0.2.169"
20162016
source = "registry+https://github.com/rust-lang/crates.io-index"
2017-
checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d"
2017+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
20182018

20192019
[[package]]
20202020
name = "libdbus-sys"

library/Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@ dependencies = [
158158

159159
[[package]]
160160
name = "libc"
161-
version = "0.2.168"
161+
version = "0.2.169"
162162
source = "registry+https://github.com/rust-lang/crates.io-index"
163-
checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d"
163+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
164164
dependencies = [
165165
"rustc-std-workspace-core",
166166
]

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ miniz_oxide = { version = "0.7.0", optional = true, default-features = false }
3434
addr2line = { version = "0.22.0", optional = true, default-features = false }
3535

3636
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
37-
libc = { version = "0.2.167", default-features = false, features = [
37+
libc = { version = "0.2.169", default-features = false, features = [
3838
'rustc-dep-of-std',
3939
], public = true }
4040

0 commit comments

Comments
 (0)