mirror of
https://github.com/vacp2p/zerokit.git
synced 2025-01-10 14:26:34 +00:00
31 lines
1.0 KiB
TOML
31 lines
1.0 KiB
TOML
[package]
|
|
name = "semaphore"
|
|
version = "0.1.0"
|
|
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"
|