Skip to content

Commit 16469a1

Browse files
committed
Update compiler-builtins
Pulls in a fix for #72758, more details on the linked issue. [Crate changes included here][changes] [changes]: rust-lang/compiler-builtins@0.1.28...0.1.31
1 parent 96dd469 commit 16469a1

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
@@ -631,9 +631,9 @@ dependencies = [
631631

632632
[[package]]
633633
name = "compiler_builtins"
634-
version = "0.1.28"
634+
version = "0.1.31"
635635
source = "registry+https://github.com/rust-lang/crates.io-index"
636-
checksum = "439a6fab343b1dab347823537734a5cd4ae6ae2000b465ab886f64cdb723bd14"
636+
checksum = "702af8463c84fd83dd76a307ebd47ab3cc866e847bebd4a1deeb6bcc4a658327"
637637
dependencies = [
638638
"cc",
639639
"rustc-std-workspace-core",

src/libstd/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ panic_unwind = { path = "../libpanic_unwind", optional = true }
2020
panic_abort = { path = "../libpanic_abort" }
2121
core = { path = "../libcore" }
2222
libc = { version = "0.2.51", default-features = false, features = ['rustc-dep-of-std'] }
23-
compiler_builtins = { version = "0.1.16" }
23+
compiler_builtins = { version = "0.1.31" }
2424
profiler_builtins = { path = "../libprofiler_builtins", optional = true }
2525
unwind = { path = "../libunwind" }
2626
hashbrown = { version = "0.6.2", default-features = false, features = ['rustc-dep-of-std'] }

0 commit comments

Comments
 (0)