Skip to content

Commit 39829d9

Browse files
committed
Checkpoint
1 parent cd588a7 commit 39829d9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/librustc_traits/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ rustc_hir = { path = "../librustc_hir" }
1616
rustc_index = { path = "../librustc_index" }
1717
rustc_ast = { path = "../librustc_ast" }
1818
rustc_span = { path = "../librustc_span" }
19+
chalk-integration = "0.19.0"
1920
chalk-ir = "0.19.0"
2021
chalk-solve = "0.19.0"
2122
smallvec = { version = "1.0", features = ["union", "may_dangle"] }

src/librustc_traits/chalk/mod.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ crate fn evaluate_goal<'tcx>(
8181
universes: max_universe + 1,
8282
};
8383

84-
let solver_choice = chalk_solve::SolverChoice::SLG { max_size: 32, expected_answers: None };
84+
let solver_choice = chalk_integration::SolverChoice::SLG {
85+
max_size: 32,
86+
expected_answers: None,
87+
};
8588
let mut solver = solver_choice.into_solver::<ChalkRustInterner<'tcx>>();
8689

8790
let db = ChalkRustIrDatabase { tcx, interner };

0 commit comments

Comments
 (0)