mirror of
https://github.com/logos-storage/zk-benchmarks.git
synced 2026-01-03 22:33:06 +00:00
24 lines
590 B
TOML
24 lines
590 B
TOML
[package]
|
|
name = "benchmark"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
risc0-zkvm = { path = "../external/risc0/risc0/zkvm", default-features = false, features = ["prove",] }
|
|
serde = "1.0"
|
|
rand = "0.8.3"
|
|
sha2 ={ git = "https://github.com/risc0/RustCrypto-hashes", tag = "sha2-v0.10.6-risczero.0" }
|
|
benchmark_methods = { path = "methods" }
|
|
zkhash = { git = "https://github.com/HorizenLabs/poseidon2.git"}
|
|
ark-ff = "0.4.2"
|
|
hex = "0.4.3"
|
|
ark-serialize = "0.4"
|
|
risc0-core = { path = "../external/risc0/risc0/core" }
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
lto = true
|