From 3c11c94d633b42c599629a892cdf3b38f7435009 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Fri, 13 Aug 2021 12:39:06 +0300 Subject: [PATCH] perf: enable asm on ark-ff --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 70a2020..4b98224 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ num-bigint = { version = "0.4", default-features = false, features = ["rand"] } # ZKP Generation ark-ec = { version = "0.3.0", default-features = false } -ark-ff = { version = "0.3.0", default-features = false } +ark-ff = { version = "0.3.0", default-features = false, features = ["asm"] } ark-std = { version = "0.3.0", default-features = false } ark-bn254 = { version = "0.3.0" } ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", version = "0.3.0" }