-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
98 lines (87 loc) · 2.72 KB
/
Cargo.toml
File metadata and controls
98 lines (87 loc) · 2.72 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
[workspace]
members = [
"crates/client",
"crates/server",
"crates/types",
"crates/mock-zkattestor",
"crates/guest-loader",
]
resolver = "2"
[workspace.package]
version = "0.6.0"
edition = "2024"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
[workspace.lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
rust_2018_idioms = { level = "deny", priority = -1 }
unnameable_types = "warn"
unreachable_pub = "warn"
unused_must_use = "deny"
[workspace.lints.rustdoc]
all = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
result_large_err = "allow"
[workspace.dependencies]
anyhow = "1.0"
async-stream = "0.3"
axum = "0.8"
bincode = "1.3.3"
bytes = "1"
clap = "4.5"
futures = "0.3"
lru = "0.12"
metrics = "0.24"
metrics-exporter-prometheus = "0.16"
rand = "0.9.2"
reqwest = "0.12"
reqwest-eventsource = "0.6"
serde = "1.0"
serde_json = "1"
sha2 = "0.10.9"
strum = "0.27.2"
thiserror = "2"
tokio = "1.48"
tokio-stream = "0.1"
tokio-util = "0.7"
toml_edit = "0.24"
tower = "0.5"
tower-http = "0.6"
opentelemetry = "0.31"
opentelemetry-otlp = "0.31"
opentelemetry_sdk = "0.31"
tracing = "0.1"
tracing-opentelemetry = "0.32"
tracing-subscriber = "0.3"
url = { version = "2.5.7", features = ["serde"] }
# lighthouse
ethereum_serde_utils = "0.8.0"
lighthouse_types = { git = "https://github.com/sigp/lighthouse", branch = "unstable", package = "types" }
ssz = { package = "ethereum_ssz", version = "0.10" }
ssz_derive = { package = "ethereum_ssz_derive", version = "0.10" }
ssz_types = "0.14"
superstruct = "0.10"
tree_hash = "0.12"
tree_hash_derive = "0.12"
# alloy
alloy-eips = "1"
alloy-genesis = "1"
alloy-primitives = "1"
alloy-rpc-types-engine = "1"
alloy-rpc-types-eth = "1"
# reth
reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
stateless = { git = "https://github.com/paradigmxyz/stateless", rev = "ed189a51931e8589102f3139d48fdbb3bbe4c1f7", default-features = false }
# ere
ere-server-client = { git = "https://github.com/eth-act/ere", tag = "v0.8.1" }
# ere-guests
ere-guests-stateless-validator-common = { git = "https://github.com/eth-act/ere-guests", tag = "v0.9.0", package = "stateless-validator-common" }
ere-guests-stateless-validator-ethrex = { git = "https://github.com/eth-act/ere-guests", tag = "v0.9.0", features = ["host"], package = "stateless-validator-ethrex" }
ere-guests-stateless-validator-reth = { git = "https://github.com/eth-act/ere-guests", tag = "v0.9.0", features = ["host"], package = "stateless-validator-reth" }
# local
zkboost-client = { path = "crates/client" }
zkboost-server = { path = "crates/server" }
zkboost-types = { path = "crates/types" }
zkboost-mock-zkattestor = { path = "crates/mock-zkattestor" }