forked from megaeth-labs/stateless-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (63 loc) · 2.48 KB
/
Cargo.toml
File metadata and controls
71 lines (63 loc) · 2.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
[workspace]
members = ["bin/stateless-validator", "validator-core"]
resolver = "2"
[workspace.dependencies]
# alloy
alloy-consensus = { version = "1.0.23", default-features = false }
alloy-eips = { version = "1.0.23", default-features = false }
alloy-evm = { version = "0.15.0", default-features = false }
alloy-genesis = { version = "1.0.23", default-features = false }
alloy-hardforks = { version = "0.2.7" }
alloy-primitives = { version = "1.3.0", default-features = false }
alloy-provider = { version = "1.0.23", features = [
"reqwest",
], default-features = false }
alloy-rlp = { version = "0.3.10", default-features = false }
alloy-rpc-types-eth = { version = "1.0.23", default-features = false }
alloy-serde = { version = "1.0.23", default-features = false }
alloy-trie = { version = "0.9.0", default-features = false }
# op
alloy-op-evm = { version = "0.15.0", default-features = false }
alloy-op-hardforks = { version = "0.2.7" }
op-alloy-network = { version = "0.18.12", default-features = false }
op-alloy-rpc-types = { version = "0.18.12", default-features = false }
# revm
revm = { version = "27.1.0", default-features = false }
# megaeth
mega-evm = { git = "https://github.com/megaeth-labs/mega-evm.git", rev = "v1.3.1" }
salt = { git = "https://github.com/megaeth-labs/salt.git", rev = "v1.0.1" }
# reth
reth-ethereum-forks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-trie = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-trie-common = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-trie-sparse = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
# misc
bincode = { version = "2.0", features = ["serde"] }
clap = { version = "4.5", features = ["derive"] }
dyn-clone = "1.0"
eyre = "0.6"
futures = "0.3"
metrics = "0.24"
metrics-exporter-prometheus = { version = "0.18", default-features = false, features = ["http-listener"] }
num_cpus = "1.17"
rayon = "1.11"
redb = "3.0.1"
serde = { version = "1.0", default-features = false }
serde_json = "1.0"
thiserror = "2.0.16"
tokio = { version = "1.46", features = ["rt-multi-thread", "signal"] }
tracing = "0.1"
tracing-subscriber = { version = "=0.3.20", features = ["fmt", "env-filter"] }
tracing-appender = "0.2"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "unwind"
strip = false
[profile.test]
opt-level = 3
debug-assertions = true
incremental = true
debug = true