forked from agglayer/agglayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (44 loc) · 1.43 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
42
43
44
45
46
47
48
49
[package]
name = "agglayer-aggregator-notifier"
version.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
agglayer-certificate-orchestrator = { path = "../agglayer-certificate-orchestrator" }
agglayer-config = { path = "../agglayer-config" }
agglayer-contracts = { path = "../agglayer-contracts" }
agglayer-prover-types = { path = "../agglayer-prover-types" }
agglayer-storage = { path = "../agglayer-storage" }
agglayer-types = { path = "../agglayer-types" }
anyhow.workspace = true
async-trait.workspace = true
arc-swap.workspace = true
bincode.workspace = true
ethers.workspace = true
fail.workspace = true
futures.workspace = true
hex.workspace = true
pessimistic-proof = { path = "../pessimistic-proof" }
reth-primitives.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["full"] }
tonic = { workspace = true, features = ["zstd"] }
tracing.workspace = true
sp1-sdk.workspace = true
sp1-prover.workspace = true
[dev-dependencies]
agglayer-prover = { path = "../agglayer-prover", features = ["testutils"] }
async-trait.workspace = true
ethers.workspace = true
fail = { workspace = true, features = ["failpoints"] }
mockall.workspace = true
pessimistic-proof-test-suite = { path = "../pessimistic-proof-test-suite" }
rstest.workspace = true
test-log.workspace = true
tokio-util.workspace = true
[features]
coverage = []
sp1 = []
testutils = []