mirror of
https://github.com/vacp2p/status-rln-prover.git
synced 2026-01-08 21:18:05 -05:00
* Update RegistryListener to interact with Karma smart contract * Add karma sc instance in grpc service
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[package]
|
|
name = "status_rln_prover"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.37", features = ["derive"] }
|
|
tonic = { version = "0.13", features = ["gzip"] }
|
|
tonic-reflection = "*"
|
|
tonic-web = "*"
|
|
prost = "0.13"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
tracing = "0.1.41"
|
|
tracing-test = "0.2.5"
|
|
alloy = { version = "0.15", features = ["full", "getrandom", "sol-types", "contract"] }
|
|
# alloy-sol-types = "1.2.0"
|
|
thiserror = "2.0"
|
|
futures = "0.3"
|
|
rln = { git = "https://github.com/vacp2p/zerokit" }
|
|
ark-bn254 = { version = "0.5", features = ["std"] }
|
|
ark-serialize = "0.5.0"
|
|
dashmap = "6.1.0"
|
|
scc = "2.3"
|
|
bytesize = "2.0.1"
|
|
rln_proof = { path = "../rln_proof" }
|
|
chrono = "0.4.41"
|
|
parking_lot = "0.12.3"
|
|
tower-http = { version = "0.6.4", features = ["cors"] }
|
|
http = "*"
|
|
async-channel = "2.3.1"
|
|
rand = "0.8.5"
|
|
derive_more = "2.0.1"
|
|
url = "2.5"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "*"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.6.0"
|
|
claims = "0.8"
|
|
ark-groth16 = "0.5.0"
|
|
|
|
[[bench]]
|
|
name = "user_db_heavy_write"
|
|
harness = false
|