diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2025-05-12 16:41:26 +0200 |
|---|---|---|
| committer | Pietro Albini <pietro@pietroalbini.org> | 2025-05-13 11:30:36 +0200 |
| commit | ce6e29679cbfa08e46b64a5ad78974bbb852ee2b (patch) | |
| tree | c1427242c1006ea411466293ca449599312ef8b0 | |
| parent | 779dd35649c42b0f57a2338d4ccd344e8ba6ebe3 (diff) | |
| download | rust-ce6e29679cbfa08e46b64a5ad78974bbb852ee2b.tar.gz rust-ce6e29679cbfa08e46b64a5ad78974bbb852ee2b.zip | |
bump compiler_builtins
| -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 93e9a8b7e8b..97ca3cb06b2 100644 --- a/library/Cargo.lock +++ b/library/Cargo.lock @@ -61,9 +61,9 @@ dependencies = [ [[package]] name = "compiler_builtins" -version = "0.1.158" +version = "0.1.159" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "164cdc689e4c6d69417f77a5f48be240c291e84fbef0b1281755dc754b19c809" +checksum = "448068da8f2326b2a0472353cb401dd8795a89c007ef30fff90f50706e862e72" dependencies = [ "cc", "rustc-std-workspace-core", diff --git a/library/alloc/Cargo.toml b/library/alloc/Cargo.toml index 51ddc9bf9fc..9d0d957226d 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.158", features = ['rustc-dep-of-std'] } +compiler_builtins = { version = "=0.1.159", 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 7915196e8e8..4ff4895ecde 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.158" } +compiler_builtins = { version = "=0.1.159" } unwind = { path = "../unwind" } hashbrown = { version = "0.15", default-features = false, features = [ 'rustc-dep-of-std', |
