Skip to content

Commit ac69f1e

Browse files
committed
Pin compiler_builtins to 0.1.160 to fix some f128 tests
1 parent f1d5cfe commit ac69f1e

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
From cdb3d407740e4f15c3746051f8ba89b8e74e99d3 Mon Sep 17 00:00:00 2001
2+
From: None <[email protected]>
3+
Date: Fri, 30 May 2025 13:46:22 -0400
4+
Subject: [PATCH] Pin compiler_builtins to 0.1.160
5+
6+
---
7+
library/alloc/Cargo.toml | 2 +-
8+
library/std/Cargo.toml | 2 +-
9+
2 files changed, 2 insertions(+), 2 deletions(-)
10+
11+
diff --git a/library/alloc/Cargo.toml b/library/alloc/Cargo.toml
12+
index 9d0d957..365c9dc 100644
13+
--- a/library/alloc/Cargo.toml
14+
+++ b/library/alloc/Cargo.toml
15+
@@ -16,7 +16,7 @@ bench = false
16+
17+
[dependencies]
18+
core = { path = "../core", public = true }
19+
-compiler_builtins = { version = "=0.1.159", features = ['rustc-dep-of-std'] }
20+
+compiler_builtins = { version = "=0.1.160", features = ['rustc-dep-of-std'] }
21+
22+
[features]
23+
compiler-builtins-mem = ['compiler_builtins/mem']
24+
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml
25+
index 4ff4895..31371f0 100644
26+
--- a/library/std/Cargo.toml
27+
+++ b/library/std/Cargo.toml
28+
@@ -18,7 +18,7 @@ cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
29+
panic_unwind = { path = "../panic_unwind", optional = true }
30+
panic_abort = { path = "../panic_abort" }
31+
core = { path = "../core", public = true }
32+
-compiler_builtins = { version = "=0.1.159" }
33+
+compiler_builtins = { version = "=0.1.160" }
34+
unwind = { path = "../unwind" }
35+
hashbrown = { version = "0.15", default-features = false, features = [
36+
'rustc-dep-of-std',
37+
--
38+
2.49.0
39+

0 commit comments

Comments
 (0)