From 04e3e3a7ebe6e9cc61db43ae162d701409c5a927 Mon Sep 17 00:00:00 2001 From: Oskar Thoren Date: Wed, 1 Jun 2022 14:53:12 +0100 Subject: [PATCH] chore(semaphore): Update dependencies --- semaphore/Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/semaphore/Cargo.toml b/semaphore/Cargo.toml index cc3b946..4c7ada8 100644 --- a/semaphore/Cargo.toml +++ b/semaphore/Cargo.toml @@ -6,5 +6,25 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +ark-bn254 = { version = "0.3.0" } +ark-circom = { git = "https://github.com/gakonst/ark-circom", features=["circom-2"] } +ark-ec = { version = "0.3.0", default-features = false, features = ["parallel"] } +ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", rev = "765817f", features = ["parallel"] } +ark-relations = { version = "0.3.0", default-features = false } +ark-std = { version = "0.3.0", default-features = false, features = ["parallel"] } +color-eyre = "0.5" num-bigint = { version = "0.4", default-features = false, features = ["rand"] } +once_cell = "1.8" +primitive-types = "0.11.1" +rand = "0.8.4" semaphore = { git = "https://github.com/worldcoin/semaphore-rs" } +serde = "1.0" +thiserror = "1.0.0" +wasmer = { version = "2.0" } + +[dev-dependencies] +rand_chacha = "0.3.1" +serde_json = "1.0.79" + +[build-dependencies] +color-eyre = "0.5"