From b85950f827d304110223415cda0f999612481173 Mon Sep 17 00:00:00 2001 From: Oskar Thoren Date: Wed, 19 Jan 2022 11:46:26 +0800 Subject: [PATCH] Update deps and edition rust-analyzer issue --- multiplier/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/multiplier/Cargo.toml b/multiplier/Cargo.toml index 9fb03b9..d9c4d81 100644 --- a/multiplier/Cargo.toml +++ b/multiplier/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "multiplier" version = "0.1.0" -edition = "2021" +edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -15,13 +15,13 @@ edition = "2021" num-bigint = { version = "0.4", default-features = false, features = ["rand"] } # ZKP Generation -# ark-ec = { version = "0.3.0", default-features = false, features = ["parallel"] } +ark-ec = { version = "0.3.0", default-features = false, features = ["parallel"] } # ark-ff = { version = "0.3.0", default-features = false, features = ["parallel", "asm"] } ark-std = { version = "0.3.0", default-features = false, features = ["parallel"] } ark-bn254 = { version = "0.3.0" } ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", rev = "765817f", features = ["parallel"] } # ark-poly = { version = "^0.3.0", default-features = false, features = ["parallel"] } -# ark-relations = { version = "0.3.0", default-features = false } +ark-relations = { version = "0.3.0", default-features = false } # ark-serialize = { version = "0.3.0", default-features = false } ark-circom = { git = "https://github.com/gakonst/ark-circom", features = ["circom-2"] }