From f77cba515f1e8909c65332bef4c8364376fac042 Mon Sep 17 00:00:00 2001 From: Srinath Setty Date: Tue, 23 Jan 2024 14:42:13 -0800 Subject: [PATCH] upgrade halo2curves to 0.6.0 --- Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e0a37576..3ba7de11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,6 +22,7 @@ rand_core = { version = "0.6", default-features = false } rand_chacha = "0.3" subtle = "2.5" pasta_curves = { version = "0.5", features = ["repr-c", "serde"] } +halo2curves = { version = "0.6.0", features = ["bits", "derive_serde"] } neptune = { version = "13.0.0", default-features = false } generic-array = "0.14" num-bigint = { version = "0.4", features = ["serde", "rand"] } @@ -39,13 +40,9 @@ itertools = "0.12.0" [target.'cfg(any(target_arch = "x86_64", target_arch = "aarch64"))'.dependencies] pasta-msm = { version = "0.1.4" } -[target.'cfg(not(target_arch = "wasm32"))'.dependencies] -halo2curves = { version = "0.5.0", features = ["bits", "derive_serde"] } - [target.'cfg(target_arch = "wasm32")'.dependencies] # see https://github.com/rust-random/rand/pull/948 getrandom = { version = "0.2.0", default-features = false, features = ["js"] } -halo2curves = { version = "0.5.0", default-features = false, features = ["bits", "derive_serde"] } [dev-dependencies] criterion = { version = "0.4", features = ["html_reports"] }