Skip to content

Commit b919403

Browse files
committed
Use Solver from chalk_solve
1 parent 39829d9 commit b919403

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/librustc_traits/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ 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"
2019
chalk-ir = "0.19.0"
2120
chalk-solve = "0.19.0"
2221
smallvec = { version = "1.0", features = ["union", "may_dangle"] }

src/librustc_traits/chalk/mod.rs

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

84-
let solver_choice = chalk_integration::SolverChoice::SLG {
84+
let solver_choice = chalk_solve::solve::SLGSolver {
8585
max_size: 32,
8686
expected_answers: None,
8787
};

0 commit comments

Comments
 (0)