Skip to content

Commit 6deb908

Browse files
bors[bot]kjeremy
andauthored
Merge #5778
5778: Chalk 0.23 r=kjeremy a=kjeremy Co-authored-by: Jeremy Kolb <kjeremy@gmail.com>
2 parents 76bd27b + 409090e commit 6deb908

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/hir_ty/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ ena = "0.14.0"
1616
log = "0.4.8"
1717
rustc-hash = "1.1.0"
1818
scoped-tls = "1"
19-
chalk-solve = { version = "0.21.0" }
20-
chalk-ir = { version = "0.21.0" }
21-
chalk-recursive = { version = "0.21.0" }
19+
chalk-solve = { version = "0.23.0" }
20+
chalk-ir = { version = "0.23.0" }
21+
chalk-recursive = { version = "0.23.0" }
2222

2323
stdx = { path = "../stdx" }
2424
hir_def = { path = "../hir_def" }

crates/hir_ty/src/traits.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,11 +170,11 @@ fn solve(
170170
let mut solve = || {
171171
if is_chalk_print() {
172172
let logging_db = LoggingRustIrDatabase::new(context);
173-
let solution = solver.solve_limited(&logging_db, goal, should_continue);
173+
let solution = solver.solve_limited(&logging_db, goal, &should_continue);
174174
log::debug!("chalk program:\n{}", logging_db);
175175
solution
176176
} else {
177-
solver.solve_limited(&context, goal, should_continue)
177+
solver.solve_limited(&context, goal, &should_continue)
178178
}
179179
};
180180

0 commit comments

Comments
 (0)