Skip to content

Commit 9ffea5b

Browse files
authored
Unrolled build for rust-lang#140504
Rollup merge of rust-lang#140504 - tmiasko:answer-ensure-stack, r=jswrenn transmutability: ensure_sufficient_stack when answering query Based on rust-lang#140380. Fixes rust-lang#118860. The compile time was addressed earlier, this merely addresses stack overflow part of the issue. r? `@jswrenn` `@joshlf`
2 parents 7188f45 + 0138df1 commit 9ffea5b

File tree

9 files changed

+354
-455
lines changed

9 files changed

+354
-455
lines changed

compiler/rustc_transmute/Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ edition = "2024"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.12"
98
rustc_abi = { path = "../rustc_abi", optional = true }
109
rustc_data_structures = { path = "../rustc_data_structures" }
1110
rustc_hir = { path = "../rustc_hir", optional = true }
@@ -15,6 +14,11 @@ smallvec = "1.8.1"
1514
tracing = "0.1"
1615
# tidy-alphabetical-end
1716

17+
[dev-dependencies]
18+
# tidy-alphabetical-start
19+
itertools = "0.12"
20+
# tidy-alphabetical-end
21+
1822
[features]
1923
rustc = [
2024
"dep:rustc_abi",

0 commit comments

Comments
 (0)