From 43193fc9fc559219e437e23718cf954e9fd7945d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Garillot?= Date: Tue, 4 Jul 2023 14:52:30 -0400 Subject: [PATCH] chore: Update halo2curves dependency in Cargo.toml - Updated the `halo2curves` dependency in `Cargo.toml` to the latest version `0.1.0` from a specific git branch. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5a03df5a..63e8d55d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ flate2 = "1.0" bitvec = "1.0" byteorder = "1.4.3" thiserror = "1.0" -halo2curves = { git = "https://github.com/han0110/halo2curves", branch = "feature/hash-to-curve", features = [ "derive_serde" ] } +halo2curves = { version="0.1.0", features = [ "derive_serde" ] } [target.'cfg(any(target_arch = "x86_64", target_arch = "aarch64"))'.dependencies] pasta-msm = { version = "0.1.4" }