-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "proof_aggregator"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
serde_yaml = "0.9"
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
alloy = { version = "0.11", features = ["default", "signer-keystore", "kzg"] }
c-kzg = "1.0.3"
bincode = "1.3.3"
tokio = { version = "1", features = ["time"]}
sha3 = "0.10.8"
reqwest = { version = "0.12" }
ciborium = "=0.2.2"
lambdaworks-crypto = { git = "https://github.com/lambdaclass/lambdaworks.git", rev = "5f8f2cfcc8a1a22f77e8dff2d581f1166eefb80b", features = ["serde"]}
# Necessary for the VerificationData type
aligned-sdk = { path = "../batcher/aligned-sdk/" }
# zkvms
sp1-sdk = "4.1.3"
sp1_aggregation_program = { path = "./aggregation_programs/sp1/" }
risc0-zkvm = { version = "2.0.1" }
risc0_aggregation_program = { path = "./aggregation_programs/risc0/" }
risc0-ethereum-contracts = { git = "https://github.com/risc0/risc0-ethereum/", tag = "v2.0.0" }
[build-dependencies]
sp1-build = { version = "4.1.3" }
risc0-build = { version = "2.0.0" }
[package.metadata.risc0]
# Tell risc0 build to find method in ./aggregation_programs/risc0 package
methods = ["./aggregation_programs/risc0"]
[profile.release]
opt-level = 3
[features]
default = []
prove = []
gpu = ["risc0-zkvm/cuda"]