[package] name = "semaphore-wrapper" version = "0.3.0" edition = "2021" license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = [] dylib = [ "wasmer/dylib", "wasmer-engine-dylib", "wasmer-compiler-cranelift" ] [dependencies] ark-bn254 = { version = "0.3.0" } ark-circom = { git = "https://github.com/gakonst/ark-circom", features=["circom-2"], rev = "35ce5a9" } 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.6.2" once_cell = "1.17.1" rand = "0.8.5" semaphore = { git = "https://github.com/worldcoin/semaphore-rs"} ethers-core = { version = "2.0.10", default-features = false } ruint = { version = "1.10.0", features = [ "serde", "num-bigint", "ark-ff" ] } serde = "1.0" thiserror = "1.0.39" wasmer = { version = "2.3" } [dev-dependencies] rand_chacha = "0.3.1" serde_json = "1.0.96" [build-dependencies] color-eyre = "0.6.2" wasmer = { version = "2.3" } wasmer-engine-dylib = { version = "2.3.0", optional = true } wasmer-compiler-cranelift = { version = "3.3.0", optional = true } [profile.release] codegen-units = 1 lto = true panic = "abort" opt-level = 3 # Compilation profile for any non-workspace member. # Dependencies are optimized, even in a dev build. This improves dev performance # while having neglible impact on incremental build times. [profile.dev.package."*"] opt-level = 3