Skip to content

Commit 1e5d8fb

Browse files
committed
downgrade compiler_builtins
The outline-atomics support in compiler_builtins messed up and wasn't limited to linux only. https://github.com/rust-lang/compiler-builtins/pull/532/files#r1249354225
1 parent fd49b1d commit 1e5d8fb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -700,9 +700,9 @@ dependencies = [
700700

701701
[[package]]
702702
name = "compiler_builtins"
703-
version = "0.1.94"
703+
version = "0.1.93"
704704
source = "registry+https://github.com/rust-lang/crates.io-index"
705-
checksum = "f4ceb2be7a1b493d08a8908fdc2555921b28f3daef84d518ea9ed7d336f852f2"
705+
checksum = "76630810d973ecea3dbf611e1b7aecfb1012751ef1ff8de3998f89014a166781"
706706
dependencies = [
707707
"cc",
708708
"rustc-std-workspace-core",

library/std/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ panic_unwind = { path = "../panic_unwind", optional = true }
1818
panic_abort = { path = "../panic_abort" }
1919
core = { path = "../core", public = true }
2020
libc = { version = "0.2.146", default-features = false, features = ['rustc-dep-of-std'], public = true }
21-
compiler_builtins = { version = "0.1.93" }
21+
# FIXME(Nilstrieb): https://github.com/rust-lang/compiler-builtins/pull/532/files#r1249354225
22+
compiler_builtins = { version = "=0.1.93" }
2223
profiler_builtins = { path = "../profiler_builtins", optional = true }
2324
unwind = { path = "../unwind" }
2425
hashbrown = { version = "0.14", default-features = false, features = ['rustc-dep-of-std'] }

0 commit comments

Comments
 (0)