Skip to content

Commit 6d69b2e

Browse files
Update compiler-builtins version to 0.1.118
1 parent 9337f7a commit 6d69b2e

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

compiler/rustc_codegen_gcc/build_system/build_sysroot/Cargo.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies = [
5050

5151
[[package]]
5252
name = "compiler_builtins"
53-
version = "0.1.109"
53+
version = "0.1.118"
5454
source = "registry+https://github.com/rust-lang/crates.io-index"
5555
checksum = "f11973008a8cf741fe6d22f339eba21fd0ca81e2760a769ba8243ed6c21edd7e"
5656
dependencies = [

compiler/rustc_codegen_gcc/build_system/build_sysroot/Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ resolver = "2"
66

77
[dependencies]
88
core = { path = "./sysroot_src/library/core" }
9-
# TODO: after the sync, revert to using version 0.1.
10-
# compiler_builtins = "0.1"
11-
compiler_builtins = "=0.1.109"
9+
compiler_builtins = "0.1"
1210
alloc = { path = "./sysroot_src/library/alloc" }
1311
std = { path = "./sysroot_src/library/std", features = ["panic_unwind", "backtrace"] }
1412
test = { path = "./sysroot_src/library/test" }

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.117"
61+
version = "0.1.118"
6262
source = "registry+https://github.com/rust-lang/crates.io-index"
63-
checksum = "a91dae36d82fe12621dfb5b596d7db766187747749b22e33ac068e1bfc356f4a"
63+
checksum = "92afe7344b64cccf3662ca26d5d1c0828ab826f04206b97d856e3625e390e4b5"
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.117", features = ['rustc-dep-of-std'] }
13+
compiler_builtins = { version = "0.1.118", 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.117" }
20+
compiler_builtins = { version = "0.1.118" }
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)