-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (20 loc) · 839 Bytes
/
Cargo.toml
File metadata and controls
24 lines (20 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "risc0_aggregation_program"
version = "0.1.0"
edition = "2021"
resolver = "2"
[dependencies]
serde = { version = "1.0.203" }
serde_json = "1.0.117"
# Unstable feature is necessary for tiny-keccak patch, see: https://dev.risczero.com/api/zkvm/precompiles#stability
risc0-zkvm = { git = "https://github.com/risc0/risc0", tag="v2.0.0", default-features = false, features = ["unstable", "std"] }
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
lambdaworks-crypto = { git = "https://github.com/lambdaclass/lambdaworks.git", rev = "5f8f2cfcc8a1a22f77e8dff2d581f1166eefb80b", features = ["serde"]}
[lib]
path = "./src/lib.rs"
[[bin]]
name = "risc0_user_proofs_aggregator_program"
path = "./src/user_proofs_aggregator_main.rs"
[[bin]]
name = "risc0_chunk_aggregator_program"
path = "./src/chunk_aggregator_main.rs"