2022-01-28 00:43:38 +00:00
|
|
|
[package]
|
|
|
|
name = "libsemaphore-rs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2022-02-01 19:40:06 +00:00
|
|
|
[lib]
|
|
|
|
name = "semaphore"
|
|
|
|
crate-type = ["staticlib", "cdylib"]
|
|
|
|
|
2022-01-28 00:43:38 +00:00
|
|
|
[dependencies]
|
2022-01-31 18:05:29 +00:00
|
|
|
ark-circom = { git = "https://github.com/philsippl/ark-circom", features=["circom-2"] }
|
2022-01-28 00:43:38 +00:00
|
|
|
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"] }
|
2022-02-01 01:31:07 +00:00
|
|
|
ark-ec = { version = "0.3.0", default-features = false, features = ["parallel"] }
|
|
|
|
ark-ff = { version = "0.3.0", default-features = false, features = ["parallel", "asm"] }
|
|
|
|
ark-relations = { version = "0.3.0", default-features = false }
|
2022-01-28 00:43:38 +00:00
|
|
|
num-bigint = { version = "0.4", default-features = false, features = ["rand"] }
|
|
|
|
ff = { package="ff_ce", version="0.11"}
|
|
|
|
poseidon-rs = "0.0.8"
|
|
|
|
color-eyre = "0.5"
|
|
|
|
sha2 = "0.10.1"
|
2022-01-29 11:52:32 +00:00
|
|
|
hex = "0.4.0"
|
|
|
|
once_cell = "1.8"
|
|
|
|
serde = "1.0"
|
|
|
|
ethers = "0.6"
|
|
|
|
hex-literal = "0.3"
|
2022-02-01 19:40:06 +00:00
|
|
|
proptest = { version = "1.0", optional = true }
|
|
|
|
rayon = "1.5.1"
|
|
|
|
|
|
|
|
[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
|