Skip to content

Commit ba63a84

Browse files
authored
Rollup merge of #82731 - de-vri-es:bump-libc-for-std, r=Mark-Simulacrum
Bump libc dependency of std to 0.2.88. This PR bumps the `libc` dependency of `std` to 0.2.88. This will fix `TcpListener::accept` for Android on x86 platforms (rust-lang/libc@31a2777). This will really finally fix #82400 for the main branch :) r? ``@JohnTitor``
2 parents 0d97f9b + c946d1d commit ba63a84

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1912,9 +1912,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
19121912

19131913
[[package]]
19141914
name = "libc"
1915-
version = "0.2.85"
1915+
version = "0.2.88"
19161916
source = "registry+https://github.com/rust-lang/crates.io-index"
1917-
checksum = "7ccac4b00700875e6a07c6cde370d44d32fa01c5a65cdd2fca6858c479d28bb3"
1917+
checksum = "03b07a082330a35e43f63177cc01689da34fbffa0105e1246cf0311472cac73a"
19181918
dependencies = [
19191919
"rustc-std-workspace-core",
19201920
]

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cfg-if = { version = "0.1.8", features = ['rustc-dep-of-std'] }
1616
panic_unwind = { path = "../panic_unwind", optional = true }
1717
panic_abort = { path = "../panic_abort" }
1818
core = { path = "../core" }
19-
libc = { version = "0.2.85", default-features = false, features = ['rustc-dep-of-std'] }
19+
libc = { version = "0.2.88", default-features = false, features = ['rustc-dep-of-std'] }
2020
compiler_builtins = { version = "0.1.39" }
2121
profiler_builtins = { path = "../profiler_builtins", optional = true }
2222
unwind = { path = "../unwind" }

0 commit comments

Comments
 (0)