File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ rustc_hir = { path = "../librustc_hir" }
16
16
rustc_index = { path = " ../librustc_index" }
17
17
rustc_ast = { path = " ../librustc_ast" }
18
18
rustc_span = { path = " ../librustc_span" }
19
+ chalk-integration = " 0.19.0"
19
20
chalk-ir = " 0.19.0"
20
21
chalk-solve = " 0.19.0"
21
22
smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
Original file line number Diff line number Diff line change @@ -81,7 +81,10 @@ crate fn evaluate_goal<'tcx>(
81
81
universes : max_universe + 1 ,
82
82
} ;
83
83
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
+ } ;
85
88
let mut solver = solver_choice. into_solver :: < ChalkRustInterner < ' tcx > > ( ) ;
86
89
87
90
let db = ChalkRustIrDatabase { tcx, interner } ;
You can’t perform that action at this time.
0 commit comments