Skip to content

Commit 02916c4

Browse files
committed
Auto merge of rust-lang#97435 - Patryk27:bump-compiler-builtins, r=Dylan-DPC
library/std: Bump compiler_builtins Some neat changes include faster float conversions & fixes for AVR 🙂 (note that's it's my first time upgrading `compiler_builtins`, so I'm not 100% sure if bumping `library/std/Cargo.toml` is enough; certainly seems to be so, though.)
2 parents 6f481f8 + 7005f24 commit 02916c4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -746,9 +746,9 @@ dependencies = [
746746

747747
[[package]]
748748
name = "compiler_builtins"
749-
version = "0.1.71"
749+
version = "0.1.73"
750750
source = "registry+https://github.com/rust-lang/crates.io-index"
751-
checksum = "163437f05ca8f29d7e9128ea728dedf5eb620e445fbca273641d3a3050305f23"
751+
checksum = "71b72fde1d7792ca3bd654f7c3ea4508f9e4d0c826e24179eabb7fcc97a90bc3"
752752
dependencies = [
753753
"cc",
754754
"rustc-std-workspace-core",

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ panic_unwind = { path = "../panic_unwind", optional = true }
1616
panic_abort = { path = "../panic_abort" }
1717
core = { path = "../core" }
1818
libc = { version = "0.2.126", default-features = false, features = ['rustc-dep-of-std'] }
19-
compiler_builtins = { version = "0.1.71" }
19+
compiler_builtins = { version = "0.1.73" }
2020
profiler_builtins = { path = "../profiler_builtins", optional = true }
2121
unwind = { path = "../unwind" }
2222
hashbrown = { version = "0.12", default-features = false, features = ['rustc-dep-of-std'] }

0 commit comments

Comments
 (0)