2023-12-11 18:26:36 +05:30
|
|
|
[package]
|
|
|
|
|
name = "benchmark"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-19 14:39:55 +05:30
|
|
|
risc0-zkvm = { path = "../external/risc0/risc0/zkvm" }
|
2023-12-11 18:26:36 +05:30
|
|
|
serde = "1.0"
|
|
|
|
|
rand = "0.8.3"
|
2023-12-13 19:16:31 +05:30
|
|
|
sha2 ={ git = "https://github.com/risc0/RustCrypto-hashes", tag = "sha2-v0.10.6-risczero.0" }
|
2024-01-19 14:39:55 +05:30
|
|
|
benchmark_methods = { path = "methods" }
|
2023-12-18 23:56:55 +05:30
|
|
|
zkhash = { git = "https://github.com/HorizenLabs/poseidon2.git"}
|
|
|
|
|
ark-ff = "0.4.2"
|
|
|
|
|
hex = "0.4.3"
|
2024-01-03 21:07:56 +05:30
|
|
|
ark-serialize = "0.4"
|
2024-01-19 14:39:55 +05:30
|
|
|
risc0-core = { path = "../external/risc0/risc0/core" }
|