Skip to content

Commit 134d5a1

Browse files
committed
Update compiler_builtins to 0.1.129
This includes the following, which adds `__divtf3` - rust-lang/compiler-builtins#622 - rust-lang/compiler-builtins#692 The `cc` bump [1] was previously included but was reverted due to problems updating. [1]: rust-lang/compiler-builtins#690
1 parent b9dc4a3 commit 134d5a1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

library/Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ dependencies = [
5858

5959
[[package]]
6060
name = "compiler_builtins"
61-
version = "0.1.126"
61+
version = "0.1.129"
6262
source = "registry+https://github.com/rust-lang/crates.io-index"
63-
checksum = "758019257ad46e191b587d8f711022a6ac1d1fb6745d75e1d76c587fdcbca770"
63+
checksum = "524c377766ed1345afcdbd3a74f43642b2839562fd85768f76cf99c9856b7580"
6464
dependencies = [
6565
"cc",
6666
"rustc-std-workspace-core",

library/alloc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2021"
1010

1111
[dependencies]
1212
core = { path = "../core" }
13-
compiler_builtins = { version = "0.1.126", features = ['rustc-dep-of-std'] }
13+
compiler_builtins = { version = "0.1.129", features = ['rustc-dep-of-std'] }
1414

1515
[dev-dependencies]
1616
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
1717
panic_unwind = { path = "../panic_unwind", optional = true }
1818
panic_abort = { path = "../panic_abort" }
1919
core = { path = "../core", public = true }
20-
compiler_builtins = { version = "0.1.126" }
20+
compiler_builtins = { version = "0.1.129" }
2121
profiler_builtins = { path = "../profiler_builtins", optional = true }
2222
unwind = { path = "../unwind" }
2323
hashbrown = { version = "0.14", default-features = false, features = [

0 commit comments

Comments
 (0)