chore(zk): update arkworks to 0.5.0

This commit is contained in:
Nicolas Sarlin
2024-11-05 10:01:03 +01:00
committed by Nicolas Sarlin
parent ccf0dc3ad8
commit daf57f5665
2 changed files with 4 additions and 8 deletions

View File

@@ -12,12 +12,10 @@ description = "tfhe-zk-pok: An implementation of zero-knowledge proofs of encryp
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ark-bls12-381 = { package = "tfhe-ark-bls12-381", version = "0.4.0" }
ark-ec = { package = "tfhe-ark-ec", version = "0.4.2", features = ["parallel"] }
ark-ff = { package = "tfhe-ark-ff", version = "0.4.3", features = ["parallel"] }
ark-poly = { package = "tfhe-ark-poly", version = "0.4.2", features = [
"parallel",
] }
ark-bls12-381 = "0.5.0"
ark-ec = { version = "0.5.0", features = ["parallel"] }
ark-ff = { version = "0.5.0", features = ["parallel"] }
ark-poly = { version = "0.5.0", features = ["parallel"] }
rand = "0.8.5"
rayon = "1.8.0"
sha3 = "0.10.8"

View File

@@ -1,5 +1,3 @@
#![allow(non_local_definitions)]
use ark_ec::bls12::{Bls12, Bls12Config, TwistType};
use ark_ff::fields::*;
use ark_ff::MontFp;