Skip to content

Commit

Permalink
upgrade toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
adr1anh committed Jun 19, 2023
1 parent 818febb commit 36924e8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions halo2_proofs/src/circuit/floor_planner/v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ impl FloorPlanner for V1 {

// - Determine how many rows our planned circuit will require.
let first_unassigned_row = column_allocations
.iter()
.map(|(_, a)| a.unbounded_interval_start())
.values()
.map(|a| a.unbounded_interval_start())
.max()
.unwrap_or(0);

Expand Down
5 changes: 4 additions & 1 deletion halo2_proofs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
clippy::suspicious_arithmetic_impl,
clippy::many_single_char_names,
clippy::same_item_push,
clippy::upper_case_acronyms
clippy::upper_case_acronyms,
clippy::needless_borrow,
clippy::useless_conversion,
clippy::unnecessary_cast
)]
#![deny(broken_intra_doc_links)]
#![deny(missing_debug_implementations)]
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.64.0
1.70.0

0 comments on commit 36924e8

Please sign in to comment.