diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-05-07 10:50:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-07 10:50:50 +0200 |
| commit | aca12a821620f37d48c6539524c99be8a6bb6520 (patch) | |
| tree | 470a8f197fad9684a11e77333997316f8cd7e025 | |
| parent | 763209e422429b1f188615cbc940c70510094d10 (diff) | |
| parent | 4de822c3d2a3c13633b0c08ae98d05aada94eabf (diff) | |
| download | rust-aca12a821620f37d48c6539524c99be8a6bb6520.tar.gz rust-aca12a821620f37d48c6539524c99be8a6bb6520.zip | |
Rollup merge of #140724 - tgross35:update-builtins, r=tgross35
Update `compiler-builtins` to 0.1.158 Includes the following changes: * Require `target_has_atomic = "ptr"` for runtime feature detection [1] [1]: https://github.com/rust-lang/compiler-builtins/pull/909
| -rw-r--r-- | library/Cargo.lock | 4 | ||||
| -rw-r--r-- | library/alloc/Cargo.toml | 2 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/library/Cargo.lock b/library/Cargo.lock index a94ed7be8c7..5100b4d8176 100644 --- a/library/Cargo.lock +++ b/library/Cargo.lock @@ -61,9 +61,9 @@ dependencies = [ [[package]] name = "compiler_builtins" -version = "0.1.157" +version = "0.1.158" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74f103f5a97b25e3ed7134dee586e90bbb0496b33ba41816f0e7274e5bb73b50" +checksum = "164cdc689e4c6d69417f77a5f48be240c291e84fbef0b1281755dc754b19c809" dependencies = [ "cc", "rustc-std-workspace-core", diff --git a/library/alloc/Cargo.toml b/library/alloc/Cargo.toml index ebfcf8759fa..51ddc9bf9fc 100644 --- a/library/alloc/Cargo.toml +++ b/library/alloc/Cargo.toml @@ -16,7 +16,7 @@ bench = false [dependencies] core = { path = "../core", public = true } -compiler_builtins = { version = "=0.1.157", features = ['rustc-dep-of-std'] } +compiler_builtins = { version = "=0.1.158", features = ['rustc-dep-of-std'] } [features] compiler-builtins-mem = ['compiler_builtins/mem'] diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index 0bf466f7966..7915196e8e8 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -18,7 +18,7 @@ cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] } panic_unwind = { path = "../panic_unwind", optional = true } panic_abort = { path = "../panic_abort" } core = { path = "../core", public = true } -compiler_builtins = { version = "=0.1.157" } +compiler_builtins = { version = "=0.1.158" } unwind = { path = "../unwind" } hashbrown = { version = "0.15", default-features = false, features = [ 'rustc-dep-of-std', |
