mirror of
https://github.com/vacp2p/status-rln-prover.git
synced 2026-01-08 21:18:05 -05:00
45 lines
1.3 KiB
TOML
45 lines
1.3 KiB
TOML
[workspace]
|
|
members = [
|
|
"rln_proof",
|
|
"smart_contract",
|
|
"prover",
|
|
"prover_cli",
|
|
"prover_client",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
rln = { version = "0.8.0", features = ["pmtree-ft"] }
|
|
zerokit_utils = { version = "0.6.0", features = ["pmtree-ft"] }
|
|
ark-bn254 = { version = "0.5.0", features = ["std"] }
|
|
ark-relations = { version = "0.5.1", features = ["std"] }
|
|
ark-ff = { version = "0.5.0", features = ["parallel"] }
|
|
ark-groth16 = { version = "0.5.0", features = ["parallel"] }
|
|
ark-serialize = { version = "0.5.0", features = ["parallel"] }
|
|
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
|
|
clap = { version = "4.5.45", features = ["derive", "wrap_help"] }
|
|
url = { version = "2.5.4", features = ["serde"] }
|
|
alloy = { version = "1.0.24", features = [
|
|
"getrandom",
|
|
"sol-types",
|
|
"contract",
|
|
"provider-ws",
|
|
"provider-anvil-node",
|
|
] }
|
|
async-trait = "0.1.89"
|
|
derive_more = "2.0.1"
|
|
thiserror = "2.0.14"
|
|
rustls = "0.23.31"
|
|
zeroize = "1.8"
|
|
tonic = "0.14.1"
|
|
prost = "0.14.1"
|
|
tonic-prost = "0.14.1"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
tracing = "0.1.41"
|
|
|
|
#[build-dependencies]
|
|
tonic-prost-build = "0.14.1"
|
|
|
|
#[dev.dependencies]
|
|
criterion = { version = "0.7.0", features = ["async_tokio"] }
|