-
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) · 807 Bytes
/
Cargo.toml
File metadata and controls
24 lines (20 loc) · 807 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 = "sp1_aggregation_program"
version = "0.1.0"
edition = "2021"
resolver = "2"
[dependencies]
sp1-zkvm = { version = "4.1.3", features = ["verify"] }
sha2 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", tag = "sha2-v0.10.8-patch-v1" }
sha3 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", tag = "sha3-v0.10.8-patch-v1" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
lambdaworks-crypto = { git = "https://github.com/lambdaclass/lambdaworks.git", rev = "5f8f2cfcc8a1a22f77e8dff2d581f1166eefb80b", features = ["serde"]}
[lib]
path = "./src/lib.rs"
[[bin]]
name = "sp1_user_proofs_aggregator_program"
path = "./src/user_proofs_aggregator_main.rs"
[[bin]]
name = "sp1_chunk_aggregator_program"
path = "./src/chunk_aggregator_main.rs"