-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 827 Bytes
/
Cargo.toml
File metadata and controls
34 lines (28 loc) · 827 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
25
26
27
28
29
30
31
32
33
[package]
name = "proof_aggregator"
version = "0.1.0"
edition = "2021"
[dependencies]
sp1-sdk = "4.1.3"
sp1_aggregation_program = { path = "./aggregation_programs/sp1/" }
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"] }
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"
# Necessary for the VerificationData type
aligned-sdk = { path = "../batcher/aligned-sdk/" }
[build-dependencies]
sp1-build = { version = "4.1.3" }
[profile.release]
opt-level = 3
lto = true
[features]
prove = []