From 91c43b8a11a14f920a32d153cfc3b5483183105a Mon Sep 17 00:00:00 2001 From: Murisi Tarusenga Date: Tue, 27 Feb 2024 08:58:51 +0200 Subject: [PATCH] Upgraded the toolchain to 1.76.0. --- masp_proofs/src/circuit/ecc.rs | 2 +- rust-toolchain.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/masp_proofs/src/circuit/ecc.rs b/masp_proofs/src/circuit/ecc.rs index 48d093f7..ed532fa9 100644 --- a/masp_proofs/src/circuit/ecc.rs +++ b/masp_proofs/src/circuit/ecc.rs @@ -37,7 +37,7 @@ where for (i, (chunk, window)) in by.chunks(3).zip(base.iter()).enumerate() { let chunk_a = chunk - .get(0) + .first() .cloned() .unwrap_or_else(|| Boolean::constant(false)); let chunk_b = chunk diff --git a/rust-toolchain.toml b/rust-toolchain.toml index cad9254a..1eb46057 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.70.0" +channel = "1.76.0" components = [ "clippy", "rustfmt" ]