diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2024-01-09 17:52:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-09 17:52:20 +0100 |
| commit | 87b0de6cb7395017a4894d01781feed9f401de50 (patch) | |
| tree | 972a04149279e5dccd28594df29db4a1c0072a3b | |
| parent | 5e75d46b67d86430498467933e1f1a29ebfb7beb (diff) | |
| parent | a2b79cd92f41fd83f08194b43b034f9e227a33bb (diff) | |
| download | rust-87b0de6cb7395017a4894d01781feed9f401de50.tar.gz rust-87b0de6cb7395017a4894d01781feed9f401de50.zip | |
Rollup merge of #118645 - Patryk27:bump-compiler-builtins, r=Nilstrieb,dtolnay
chore: Bump compiler_builtins Actually closes https://github.com/rust-lang/rust/issues/118079.
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5b9dd05398f..ea8b5d49465 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -704,9 +704,9 @@ checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335" [[package]] name = "compiler_builtins" -version = "0.1.103" +version = "0.1.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3b73c3443a5fd2438d7ba4853c64e4c8efc2404a9e28a9234cc2d5eebc6c242" +checksum = "99c3f9035afc33f4358773239573f7d121099856753e1bbd2a6a5207098fc741" dependencies = [ "cc", "rustc-std-workspace-core", diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index fe66788b564..5dbfe4aa2ac 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -18,7 +18,7 @@ panic_unwind = { path = "../panic_unwind", optional = true } panic_abort = { path = "../panic_abort" } core = { path = "../core", public = true } libc = { version = "0.2.150", default-features = false, features = ['rustc-dep-of-std'], public = true } -compiler_builtins = { version = "0.1.103" } +compiler_builtins = { version = "0.1.104" } profiler_builtins = { path = "../profiler_builtins", optional = true } unwind = { path = "../unwind" } hashbrown = { version = "0.14", default-features = false, features = ['rustc-dep-of-std'] } @@ -54,8 +54,8 @@ hermit-abi = { version = "0.3.2", features = ['rustc-dep-of-std'], public = true wasi = { version = "0.11.0", features = ['rustc-dep-of-std'], default-features = false } [target.'cfg(target_os = "uefi")'.dependencies] -r-efi = { version = "4.2.0", features = ['rustc-dep-of-std']} -r-efi-alloc = { version = "1.0.0", features = ['rustc-dep-of-std']} +r-efi = { version = "4.2.0", features = ['rustc-dep-of-std'] } +r-efi-alloc = { version = "1.0.0", features = ['rustc-dep-of-std'] } [features] backtrace = [ |
