mirror of
https://github.com/vacp2p/status-rln-prover.git
synced 2026-01-08 21:18:05 -05:00
* Update && enable unit test: test_user_spamming_same_signal * Add debug_assert in epoch_counters_operands * Write merkle tree inside db transaction * Add note about error handling in RegistryListener * Remove user if it cannot register it to smart contract * Remove user in db if we cannot add to SC * Add support for config file
57 lines
1.5 KiB
TOML
57 lines
1.5 KiB
TOML
[package]
|
|
name = "status_rln_prover"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.37", features = ["derive", "wrap_help"] }
|
|
tonic = { version = "0.13", features = ["gzip"] }
|
|
tonic-reflection = "*"
|
|
tonic-web = "*"
|
|
tower-http = { version = "0.6.4", features = ["cors"] }
|
|
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.workspace = true
|
|
thiserror = "2.0"
|
|
futures = "0.3"
|
|
ark-bn254.workspace = true
|
|
ark-serialize.workspace = true
|
|
ark-ff.workspace = true
|
|
bytesize = "2.0.1"
|
|
chrono = "0.4.41"
|
|
parking_lot = "0.12"
|
|
http = "*"
|
|
async-channel = "2.3.1"
|
|
rand = "0.8.5"
|
|
derive_more.workspace = true
|
|
url.workspace = true
|
|
num-bigint = "0.4"
|
|
async-trait.workspace = true
|
|
serde = { version="1", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
# rocksdb = "0.23"
|
|
rocksdb = { git = "https://github.com/tillrohrmann/rust-rocksdb", branch="issues/836" }
|
|
nom = "8.0"
|
|
claims = "0.8"
|
|
clap_config = "0.1"
|
|
toml = "0.8"
|
|
rln = { git = "https://github.com/vacp2p/zerokit", features = ["pmtree-ft"] }
|
|
zerokit_utils = { git = "https://github.com/vacp2p/zerokit", package = "zerokit_utils", features = ["default"] }
|
|
rln_proof = { path = "../rln_proof" }
|
|
smart_contract = { path = "../smart_contract" }
|
|
|
|
[build-dependencies]
|
|
tonic-build = "*"
|
|
|
|
[dev-dependencies]
|
|
criterion.workspace = true
|
|
ark-groth16.workspace = true
|
|
tempfile = "3.20"
|
|
|
|
[[bench]]
|
|
name = "user_db_heavy_write"
|
|
harness = false
|