From fce55185ae93d3daa7adbb04b51add3237ff45af Mon Sep 17 00:00:00 2001 From: Greg Zaverucha Date: Wed, 3 Sep 2025 16:25:28 -0700 Subject: [PATCH 1/3] Set Rust compiler version to 1.88.0 The project will not build with the latest version of the Rust compiler, due to a problem with an older version of a dependency. See Issue #148 for details. Signed-off-by: Greg Zaverucha --- creds/rust-toolchain | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/creds/rust-toolchain b/creds/rust-toolchain index 2bf5ad04..e88baf10 100644 --- a/creds/rust-toolchain +++ b/creds/rust-toolchain @@ -1 +1,2 @@ -stable +[toolchain] +channel = "1.88.0" From a8e2a33c252b29ab747d8106b7117b3b89fae234 Mon Sep 17 00:00:00 2001 From: Greg Zaverucha Date: Wed, 3 Sep 2025 17:01:14 -0700 Subject: [PATCH 2/3] Do not warn about dead code in forks/halo2curves --- forks/halo2curves/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/forks/halo2curves/src/lib.rs b/forks/halo2curves/src/lib.rs index 2e21ce02..6af17c48 100644 --- a/forks/halo2curves/src/lib.rs +++ b/forks/halo2curves/src/lib.rs @@ -1,3 +1,4 @@ +#![allow(dead_code)] mod arithmetic; mod curve; pub mod ff_ext; From 81f133cc0ff8cad66891ac80577f80e8f6c300a7 Mon Sep 17 00:00:00 2001 From: Greg Zaverucha Date: Wed, 3 Sep 2025 20:51:50 -0700 Subject: [PATCH 3/3] Add rust-toolchain to sample/client_helper Signed-off-by: Greg Zaverucha --- sample/client_helper/rust-toolchain | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sample/client_helper/rust-toolchain diff --git a/sample/client_helper/rust-toolchain b/sample/client_helper/rust-toolchain new file mode 100644 index 00000000..e88baf10 --- /dev/null +++ b/sample/client_helper/rust-toolchain @@ -0,0 +1,2 @@ +[toolchain] +channel = "1.88.0"