forked from agglayer/agglayer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
142 lines (135 loc) · 5.1 KB
/
Cargo.toml
File metadata and controls
142 lines (135 loc) · 5.1 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
[workspace]
resolver = "2"
default-members = ["crates/agglayer"]
members = ["crates/*", "tests/integrations"]
exclude = [
"crates/pessimistic-proof-program",
"crates/pessimistic-proof-test-suite/aggchain-proof-ecdsa-example/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"))',
'cfg(fuzzing)',
] }
[workspace.dependencies]
# Intra-repo 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-grpc-api = { path = "crates/agglayer-grpc-api" }
agglayer-grpc-client = { path = "crates/agglayer-grpc-client" }
agglayer-grpc-server = { path = "crates/agglayer-grpc-server" }
agglayer-grpc-types = { path = "crates/agglayer-grpc-types" }
agglayer-jsonrpc-api = { path = "crates/agglayer-jsonrpc-api" }
agglayer-node = { path = "crates/agglayer-node" }
agglayer-rate-limiting = { path = "crates/agglayer-rate-limiting" }
agglayer-rpc = { path = "crates/agglayer-rpc" }
agglayer-settlement-service = { path = "crates/agglayer-settlement-service" }
agglayer-signer = { path = "crates/agglayer-signer" }
agglayer-sp1 = { path = "crates/agglayer-sp1" }
agglayer-storage = { path = "crates/agglayer-storage" }
agglayer-storage-types = { path = "crates/agglayer-storage-types" }
agglayer-telemetry = { path = "crates/agglayer-telemetry" }
agglayer-types = { path = "crates/agglayer-types" }
agglayer-utils = { path = "crates/agglayer-utils" }
agglayer-test-suite = { path = "crates/agglayer-test-suite" }
pessimistic-proof = { path = "crates/pessimistic-proof" }
pessimistic-proof-core = { path = "crates/pessimistic-proof-core" }
pessimistic-proof-test-suite = { path = "crates/pessimistic-proof-test-suite" }
# Interop
agglayer-bincode = "0.13.0"
agglayer-interop = "0.13.0"
agglayer-interop-types = "0.13.0"
agglayer-elf-build = "0.13.0"
agglayer-primitives = "0.13.0"
agglayer-tries = "0.13.0"
unified-bridge = "0.13.0"
# Provers
prover-alloy = { git = "https://github.com/agglayer/provers.git", tag = "v1.9.1" }
prover-config = { git = "https://github.com/agglayer/provers.git", tag = "v1.9.1" }
prover-logger = { git = "https://github.com/agglayer/provers.git", tag = "v1.9.1" }
prover-executor = { git = "https://github.com/agglayer/provers.git", tag = "v1.9.1" }
prover-engine = { git = "https://github.com/agglayer/provers.git", tag = "v1.9.1" }
prover-utils = { git = "https://github.com/agglayer/provers.git", tag = "v1.9.1" }
# SP1 dependencies
# Note: Whenever these are updated, also consider updating the SP1 toolchain docker image version.
# It is specified at the top of scripts/make/Makefile.pp.toml.
sp1-core-machine = "=5.2.4"
sp1-sdk = "=5.2.2"
sp1-primitives = "=5.2.2"
sp1-prover = "=5.2.4"
sp1-zkvm = { version = "=5.2.4", default-features = false }
# Core dependencies
alloy = { version = "1.7.3", features = ["full", "json-rpc"] }
alloy-primitives = { version = "1.5.7", features = ["serde", "k256"] }
alloy-signer-local = { version = "1.7.3", features = ["keystore", "mnemonic"] }
anyhow = "1.0"
arbitrary = { version = "1.4", features = ["derive"] }
arc-swap = "1.8"
async-trait = "0.1.89"
axum = "0.8.8"
base64 = "0.22.1"
bolero = { version = "0.13.4", features = ["arbitrary"] }
buildstructor = "0.6"
clap = { version = "4.5", features = ["derive", "env"] }
color-eyre = { version = "0.6.5" }
criterion = "0.8"
derive_more = "2.1"
dirs = "6.0"
dotenvy = "0.15.7"
educe = { version = "0.6", features = ["Debug", "Clone", "Eq", "Ord"] }
eyre = "0.6.12"
fail = { version = "0.5.1", default-features = false }
futures = "0.3.32"
futures-util = "0.3.32"
gcloud-sdk = "0.27.4"
hex = "0.4.3"
http = "1.4"
hyper = "1.8"
insta = { git = "https://github.com/freyskeyd/insta", branch = "chore/updating-deps-to-avoid-serialize-error", features = [
"toml",
"yaml",
"json",
"redactions",
"filters",
] }
jsonrpsee = { version = "0.24.7", features = ["full"] }
lazy_static = "1.5"
mockall = "0.14"
parking_lot = "0.12.5"
pbjson = "0.9.0"
pin-project = "1.1"
prost = "0.13.5"
prost-types = { version = "0.13.5" }
rand = "0.9.0"
reqwest = "0.12"
rstest = "0.26"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.17"
serde-reflection = "0.5"
strum = "0.28"
strum_macros = "0.28"
test-log = { version = "0.2.19", features = ["trace"] }
thiserror = "2.0"
tokio = { version = "1.50", features = ["full"] }
tokio-stream = { version = "0.1.18", features = ["sync"] }
tokio-util = "0.7.18"
toml = "1.0"
tonic = { version = "0.13.1", default-features = false }
tonic-health = "0.13.1"
tonic-reflection = "0.13.1"
tonic-types = "0.13.1"
tower = "0.4.13"
tower-http = { version = "0.6.8", features = ["full"] }
tracing = "0.1.44"
tracing-appender = "0.2.4"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
ulid = "1.2"
url = { version = "2.5", features = ["serde"] }