Skip to content

Commit

Permalink
fix(solve-snapshot): Convert root requirements to Requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
eviltak committed Jul 30, 2024
1 parent 8f10ea0 commit dcf7022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/solve-snapshot/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ fn main() {
let mut solver = Solver::new(provider);
let mut records = None;
let mut error = None;
match solver.solve(vec![package_requirement], vec![]) {
match solver.solve(vec![package_requirement.into()], vec![]) {
Ok(solution) => {
eprintln!("OK");
records = Some(solution.len())
Expand Down

0 comments on commit dcf7022

Please sign in to comment.