mirror of
https://github.com/arnaucube/hyperplonk.git
synced 2026-01-11 16:41:28 +01:00
Bump to arkworks-0.4.0 (#126)
* Bump to arkworks-0.4.0 * Replace remaining usages of `msm_bigint` with `msm_unchecked` Using `msm_unchecked` instead of `msm_bigint` allows to delete the BigInt conversion code by letting the library take care of it.
This commit is contained in:
@@ -6,8 +6,8 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
||||
ark-ff = { version = "^0.3.0", default-features = false }
|
||||
ark-serialize = { version = "^0.3.0", default-features = false }
|
||||
ark-std = { version = "^0.3.0", default-features = false }
|
||||
ark-ff = { version = "^0.4.0", default-features = false }
|
||||
ark-serialize = { version = "^0.4.0", default-features = false }
|
||||
ark-std = { version = "^0.4.0", default-features = false }
|
||||
displaydoc = { version = "0.2.3", default-features = false }
|
||||
merlin = { version = "3.0.0", default-features = false }
|
||||
|
||||
@@ -126,6 +126,6 @@ impl<F: PrimeField> IOPTranscript<F> {
|
||||
macro_rules! to_bytes {
|
||||
($x:expr) => {{
|
||||
let mut buf = ark_std::vec![];
|
||||
ark_serialize::CanonicalSerialize::serialize($x, &mut buf).map(|_| buf)
|
||||
ark_serialize::CanonicalSerialize::serialize_compressed($x, &mut buf).map(|_| buf)
|
||||
}};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user