mirror of
https://github.com/vacp2p/zerokit.git
synced 2025-01-27 14:55:41 +00:00
a85454cfd7
* refactor(rln): removing unused crates/dependencies * cargo fmt * refactor(rln): removed more dependencies; curve/fields as parameters * refactor(rln): use poseidon-rs hash instead of semaphore-rs poseidon * chore(rln): remove deps * refactor(rln): use exclusively arkworks Fr
38 lines
1.2 KiB
TOML
38 lines
1.2 KiB
TOML
[package]
|
|
name = "rln"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib", "staticlib"]
|
|
|
|
[dependencies]
|
|
|
|
# ZKP Generation
|
|
ark-ec = { version = "0.3.0", default-features = false, features = ["parallel"] }
|
|
ark-ff = { version = "0.3.0", default-features = false, features = ["parallel", "asm"] }
|
|
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" ] }
|
|
ark-serialize = { version = "0.3.0", default-features = false }
|
|
ark-circom = { git = "https://github.com/gakonst/ark-circom", features = ["circom-2"] }
|
|
wasmer = { version = "2.0" }
|
|
|
|
# error handling
|
|
color-eyre = "0.5"
|
|
thiserror = "1.0.0"
|
|
|
|
# utilities
|
|
hex-literal = "0.3"
|
|
num-bigint = { version = "0.4", default-features = false, features = ["rand"] }
|
|
once_cell = "1.8"
|
|
rand = "0.8"
|
|
tiny-keccak = "2.0.2"
|
|
num-traits = "0.2.15"
|
|
ff = { package="ff_ce", version="0.11"}
|
|
poseidon-rs = "0.0.8"
|
|
|
|
# serialization
|
|
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
|
|
serde_json = "1.0.48" |