From 44f700228881deaf8daf3f3b659f223f83f7a499 Mon Sep 17 00:00:00 2001 From: Daira Emma Hopwood Date: Wed, 22 Nov 2023 21:55:35 +0000 Subject: [PATCH] Set `rust-version` to 1.60 in `{halo2,halo2_proofs,halo2_gadgets}/Cargo.toml`. It was already 1.60 in `rust-toolchain.toml` in the workspace root, but that is not used when building in the subdirectories. Signed-off-by: Daira Emma Hopwood --- halo2/Cargo.toml | 2 +- halo2_gadgets/Cargo.toml | 2 +- halo2_proofs/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/halo2/Cargo.toml b/halo2/Cargo.toml index 14e2716ad0..ba8c53a24b 100644 --- a/halo2/Cargo.toml +++ b/halo2/Cargo.toml @@ -5,7 +5,7 @@ authors = [ "Jack Grigg ", ] edition = "2021" -rust-version = "1.59" +rust-version = "1.60" description = "[BETA] Fast zero-knowledge proof-carrying data implementation with no trusted setup" license = "MIT OR Apache-2.0" repository = "https://github.com/zcash/halo2" diff --git a/halo2_gadgets/Cargo.toml b/halo2_gadgets/Cargo.toml index 61b251f9d2..8554bd8b58 100644 --- a/halo2_gadgets/Cargo.toml +++ b/halo2_gadgets/Cargo.toml @@ -9,7 +9,7 @@ authors = [ "Kris Nuttycombe ", ] edition = "2021" -rust-version = "1.59" +rust-version = "1.60" description = "Reusable gadgets and chip implementations for Halo 2" license = "MIT OR Apache-2.0" repository = "https://github.com/zcash/halo2" diff --git a/halo2_proofs/Cargo.toml b/halo2_proofs/Cargo.toml index 6368bddc99..116855d314 100644 --- a/halo2_proofs/Cargo.toml +++ b/halo2_proofs/Cargo.toml @@ -8,7 +8,7 @@ authors = [ "Jack Grigg ", ] edition = "2021" -rust-version = "1.59" +rust-version = "1.60" description = """ Fast PLONK-based zero-knowledge proving system with no trusted setup """