zerokit/rln/Cargo.toml

43 lines
1.2 KiB
TOML
Raw Normal View History

2022-03-11 09:55:46 +00:00
[package]
name = "rln"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib", "staticlib"]
2022-03-11 09:55:46 +00:00
[dependencies]
# ZKP Generation
ark-ff = { version = "0.3.0", default-features = false, features = ["parallel", "asm"] }
2022-03-11 09:55:46 +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"] }
ark-relations = { version = "0.3.0", default-features = false, features = [ "std" ] }
2022-03-11 09:55:46 +00:00
ark-serialize = { version = "0.3.0", default-features = false }
ark-circom = { git = "https://github.com/gakonst/ark-circom", rev = "06eb075", features = ["circom-2"] }
#ark-circom = { git = "https://github.com/vacp2p/ark-circom", branch = "no-ethers-core", features = ["circom-2"] }
wasmer = "2.3.0"
2022-03-11 09:55:46 +00:00
# error handling
color-eyre = "0.5.11"
thiserror = "1.0.0"
2022-03-11 09:55:46 +00:00
# utilities
cfg-if = "1.0"
num-bigint = { version = "0.4.3", default-features = false, features = ["rand"] }
num-traits = "0.2.11"
once_cell = "1.14.0"
rand = "0.8"
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
# serialization
serde_json = "1.0.48"
[dev-dependencies]
hex-literal = "0.3.4"
[features]
fullmerkletree = []