forked from agglayer/agglayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 1.11 KB
/
Cargo.toml
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
[package]
name = "agglayer-prover"
version.workspace = true
edition.workspace = true
license.workspace = true
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
bincode.workspace = true
buildstructor.workspace = true
futures.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["full"] }
tokio-util.workspace = true
toml.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter", "json"] }
tracing.workspace = true
tower.workspace = true
tonic = { workspace = true, features = ["zstd"] }
tonic-health = "0.12.3"
tonic-reflection = "0.12.3"
agglayer-config = { path = "../agglayer-config" }
agglayer-prover-types = { path = "../agglayer-prover-types" }
agglayer-telemetry = { path = "../agglayer-telemetry" }
pessimistic-proof = { path = "../pessimistic-proof" }
agglayer-types = { path = "../agglayer-types" }
sp1-sdk = { workspace = true, features = ["native-gnark"] }
sp1-prover = { workspace = true, features = ["native-gnark"] }
[dev-dependencies]
agglayer-types = { path = "../agglayer-types" }
[features]
default = []
testutils = []
gpu = ["sp1-sdk/cuda"]