diff options
| author | Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> | 2025-03-13 11:28:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-13 11:28:33 +0100 |
| commit | 10be9735c70e3c81d2b4ec7fcf635ea6971bbde9 (patch) | |
| tree | 9c5fef54027327f0759c61fd1bc04658ddfb8408 | |
| parent | 419d9137363f4456accdf3bbf4c87d7435b53d9a (diff) | |
| parent | e1854933d8b0bdbbf692c9c9e28c0cd694f34e4b (diff) | |
| download | rust-10be9735c70e3c81d2b4ec7fcf635ea6971bbde9.tar.gz rust-10be9735c70e3c81d2b4ec7fcf635ea6971bbde9.zip | |
Rollup merge of #138356 - betrusted-io:bump-libc-0.2.171, r=jhpratt
bump libc to 0.2.171 to fix xous Due to a reorganization in the `libc` crate, the `xous` target broke with version `0.2.170`. Bump libc to `0.2.171` to fix nightly.
| -rw-r--r-- | library/Cargo.lock | 4 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/library/Cargo.lock b/library/Cargo.lock index 8f174f28472..104e0a3d010 100644 --- a/library/Cargo.lock +++ b/library/Cargo.lock @@ -157,9 +157,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.170" +version = "0.2.171" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" +checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" dependencies = [ "rustc-std-workspace-core", ] diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index f7379c413f1..b4d4a61768b 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -35,7 +35,7 @@ miniz_oxide = { version = "0.8.0", optional = true, default-features = false } addr2line = { version = "0.24.0", optional = true, default-features = false } [target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies] -libc = { version = "0.2.170", default-features = false, features = [ +libc = { version = "0.2.171", default-features = false, features = [ 'rustc-dep-of-std', ], public = true } |
