Skip to content

Commit 930b52d

Browse files
Pin libc back to 0.2.153
1 parent f96cc5c commit 930b52d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -2168,9 +2168,9 @@ checksum = "db13adb97ab515a3691f56e4dbab09283d0b86cb45abd991d8634a9d6f501760"
21682168

21692169
[[package]]
21702170
name = "libc"
2171-
version = "0.2.154"
2171+
version = "0.2.153"
21722172
source = "registry+https://github.com/rust-lang/crates.io-index"
2173-
checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
2173+
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
21742174
dependencies = [
21752175
"rustc-std-workspace-core",
21762176
]

library/std/Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ miniz_oxide = { version = "0.7.0", optional = true, default-features = false }
3131
addr2line = { version = "0.21.0", optional = true, default-features = false }
3232

3333
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
34-
libc = { version = "0.2.153", default-features = false, features = ['rustc-dep-of-std'], public = true }
34+
libc = { version = "=0.2.153", default-features = false, features = ['rustc-dep-of-std'], public = true }
3535

36+
# Pin libc (pending https://github.com/rust-lang/rust/pull/124560)
3637
[target.'cfg(all(windows, target_env = "msvc"))'.dependencies]
37-
libc = { version = "0.2.153", default-features = false }
38+
libc = { version = "=0.2.153", default-features = false }
3839

3940
[target.'cfg(all(not(target_os = "aix"), not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))))'.dependencies]
4041
object = { version = "0.32.0", default-features = false, optional = true, features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive'] }

0 commit comments

Comments
 (0)