forked from Jokacar10/agglayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
119 lines (112 loc) · 4.48 KB
/
Cargo.toml
File metadata and controls
119 lines (112 loc) · 4.48 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
[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-signer = { path = "crates/agglayer-signer" }
agglayer-storage = { path = "crates/agglayer-storage" }
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-interop = { git = "https://github.com/agglayer/interop.git", tag = "v0.7.0" }
agglayer-interop-types = { git = "https://github.com/agglayer/interop.git", tag = "v0.7.0" }
agglayer-primitives = { git = "https://github.com/agglayer/interop.git", tag = "v0.7.0" }
agglayer-tries = { git = "https://github.com/agglayer/interop.git", tag = "v0.7.0" }
unified-bridge = { git = "https://github.com/agglayer/interop.git", tag = "v0.7.0" }
# Provers
agglayer-prover = { git = "https://github.com/agglayer/provers.git", tag = "v1.1.1" }
agglayer-prover-config = { git = "https://github.com/agglayer/provers.git", tag = "v1.1.1" }
agglayer-prover-types = { git = "https://github.com/agglayer/provers.git", tag = "v1.1.1" }
prover-config = { git = "https://github.com/agglayer/provers.git", tag = "v1.1.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.0.0"
sp1-sdk = "=5.0.3"
sp1-primitives = "=5.0.0"
sp1-prover = "=5.0.1"
sp1-zkvm = { version = "=5.0.0", default-features = false }
# Core dependencies
alloy = { version = "0.14.0", features = ["full"] }
alloy-primitives = { version = "1.1", features = ["serde", "k256"] }
anyhow = "1.0"
arbitrary = { version = "1.4", features = ["derive"] }
arc-swap = "1.7"
async-trait = "0.1.86"
axum = "0.8.1"
base64 = "0.22.0"
bincode = "1.3"
bolero = { version = "0.13.0", features = ["arbitrary"] }
buildstructor = "0.5.4"
clap = { version = "4.5", features = ["derive", "env"] }
dirs = "5.0"
dotenvy = "0.15.7"
ethers = "2.0"
ethers-gcp-kms-signer = "0.1.5"
ethers-signers = "2.0"
fail = { version = "0.5.1", default-features = false }
futures = "0.3.31"
hex = "0.4.3"
http = "1.2"
hyper = "1.6"
insta = { git = "https://github.com/freyskeyd/insta", branch = "chore/updating-deps-to-avoid-serialize-error", features = [
"toml",
"yaml",
"json",
] }
jsonrpsee = { version = "0.24.7", features = ["full"] }
lazy_static = "1.5"
mockall = "0.13.1"
parking_lot = "0.12.3"
pin-project = "1.1"
prost = "0.13.4"
rand = "0.9.0"
rstest = "0.22.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.12"
test-log = "0.2.16"
thiserror = "2.0"
tokio = { version = "1.43", features = ["full"] }
tokio-stream = { version = "0.1.17", features = ["sync"] }
tokio-util = "0.7.13"
toml = "0.8.20"
tonic = { version = "0.12.3", default-features = false }
tonic-types = "0.12.3"
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", features = ["serde"] }