Skip to content

Commit 5319d24

Browse files
authored
Rollup merge of rust-lang#100568 - ivmarkov:master, r=Mark-Simulacrum
Fix STD build for ESP-IDF We have accidentally broken the STD build for the Tier 3 `target_os="espidf"` (only) by pushing non-buildable changes to `libc` which ended up in version 0.2.229. `libc` [was fixed](rust-lang/libc@d0e3ff0) from V0.2.230 onwards. This PR is only upgrading the `libc` dependency in `Cargo.lock` to latest (V0.2.231). `Cargo.lock` was modified by using `cargo update -p libc`.
2 parents e14d12c + 84a0da6 commit 5319d24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.lock

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

21412141
[[package]]
21422142
name = "libc"
2143-
version = "0.2.129"
2143+
version = "0.2.131"
21442144
source = "registry+https://github.com/rust-lang/crates.io-index"
2145-
checksum = "64de3cc433455c14174d42e554d4027ee631c4d046d43e3ecc6efc4636cdc7a7"
2145+
checksum = "04c3b4822ccebfa39c02fc03d1534441b22ead323fa0f48bb7ddd8e6ba076a40"
21462146
dependencies = [
21472147
"rustc-std-workspace-core",
21482148
]

0 commit comments

Comments
 (0)