forked from agglayer/agglayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
94 lines (86 loc) · 3.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[workspace]
resolver = "2"
default-members = ["crates/agglayer"]
members = ["crates/*", "xtask", "tests/integrations"]
exclude = ["crates/pessimistic-proof-program"]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(feature, values("cargo-clippy"))',
] }
[workspace.dependencies]
# Project dependencies
agglayer-aggregator-notifier = { path = "crates/agglayer-aggregator-notifier" }
agglayer-certificate-orchestrator = { path = "crates/agglayer-certificate-orchestrator" }
agglayer-clock = { path = "crates/agglayer-clock" }
agglayer-config = { path = "crates/agglayer-config" }
agglayer-contracts = { path = "crates/agglayer-contracts" }
agglayer-node = { path = "crates/agglayer-node" }
agglayer-prover = { path = "crates/agglayer-prover", features = ["testutils"] }
agglayer-signer = { path = "crates/agglayer-signer" }
agglayer-storage = { path = "crates/agglayer-storage" }
agglayer-telemetry = { path = "crates/agglayer-telemetry" }
agglayer-types = { path = "crates/agglayer-types" }
pessimistic-proof = { path = "crates/pessimistic-proof" }
pessimistic-proof-test-suite = { path = "crates/pessimistic-proof-test-suite" }
# Core dependencies
alloy = { version = "0.8.0", features = ["full"] }
anyhow = "1.0.94"
arc-swap = "1.7.1"
async-trait = "0.1.82"
base64 = "0.22.0"
bincode = "1.3.3"
buildstructor = "0.5.4"
clap = { version = "4.5.23", features = ["derive", "env"] }
dirs = "5.0.1"
dotenvy = "0.15.7"
ethers = "2.0.14"
ethers-gcp-kms-signer = "0.1.5"
ethers-signers = "2.0.14"
futures = "0.3.31"
hex = "0.4.3"
hyper = "1.5.2"
jsonrpsee = { version = "0.24.7", features = ["full"] }
lazy_static = "1.5.0"
parking_lot = "0.12.3"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
serde_with = "3.11.0"
thiserror = "2.0.7"
tokio = { version = "1.42.0", features = ["full"] }
tokio-stream = { version = "0.1.17", features = ["sync"] }
tokio-util = "0.7.13"
toml = "0.8.15"
tonic = { version = "0.12.3", default-features = false }
tower = "0.4.13"
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
url = { version = "2.5.4", features = ["serde"] }
# Test dependencies
fail = { version = "0.5.1", default-features = false }
insta = { git = "https://github.com/freyskeyd/insta", branch = "chore/updating-deps-to-avoid-serialize-error", features = [
"toml",
"yaml",
] }
mockall = "0.13.1"
rand = "0.8.5"
rstest = "0.22.0"
test-log = "0.2.16"
# SP1 dependencies
reth-primitives = { git = "https://github.com/sp1-patches/reth", default-features = false, branch = "sp1-reth" }
sp1-core-machine = "=3.3.0"
sp1-sdk = "=3.3.0"
sp1-prover = "=3.3.0"
# A hack to make the resolver pull in the correct sp1 branch when processing the reth and revm deps.
# This is intended to be a temporary hotfix while the dependency issue in the upstream packages is
# being fixed.
#
# Note the doubled up '/' character. It is present to make Cargo treat the target git repository as
# being distinct from the source. That is to work around the current limitation in Cargo where
# patches differing solely in git branch/tag are not allowed. This may stop working in the future.
[patch.'https://github.com/succinctlabs/sp1']
sp1-precompiles = { git = "https://github.com/succinctlabs//sp1", tag = "v1.0.8-testnet" }