-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
153 lines (138 loc) · 7.9 KB
/
Copy pathCargo.toml
File metadata and controls
153 lines (138 loc) · 7.9 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
143
144
145
146
147
148
149
150
151
152
153
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.95"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paradigmxyz/stateless"
repository = "https://github.com/paradigmxyz/stateless"
exclude = [".github/"]
[workspace]
members = [
"crates/stateless",
"crates/stateless-validator-common",
"crates/stateless-validator-reth",
"crates/tries",
"crates/zeth-mpt",
"testing/ef-tests",
"testing/stateless-validator",
]
resolver = "2"
[workspace.lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
rust_2018_idioms = { level = "deny", priority = -1 }
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(target_vendor, values("zisk"))'] }
unreachable_pub = "warn"
unused_must_use = "deny"
[workspace.lints.clippy]
disallowed_types = "deny"
[workspace.lints.rustdoc]
all = "warn"
[profile.dev]
debug = "line-tables-only"
[profile.release]
opt-level = 3
lto = "thin"
debug = "none"
strip = "symbols"
[workspace.dependencies]
# internal
stateless = { path = "crates/stateless", default-features = false }
stateless-validator-common = { path = "crates/stateless-validator-common", default-features = false }
stateless-validator-reth = { path = "crates/stateless-validator-reth", default-features = false }
tries = { path = "crates/tries", default-features = false }
# reth
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de", default-features = false }
reth-consensus = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de", default-features = false }
reth-db = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de" }
reth-db-api = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de" }
reth-db-common = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de" }
reth-ethereum-consensus = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de", default-features = false }
reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de", default-features = false }
reth-evm = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de", default-features = false }
reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de", default-features = false }
reth-primitives-traits = { version = "0.6.0", default-features = false }
reth-payload-validator = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de", default-features = false }
reth-provider = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de" }
reth-revm = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de", default-features = false }
reth-tracing = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de" }
reth-trie = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de" }
reth-trie-common = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de", default-features = false }
reth-trie-db = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de" }
reth-trie-sparse = { git = "https://github.com/paradigmxyz/reth", rev = "3d270d933daeeb90c5735d81ff7f80c00322d6de", default-features = false }
# alloy
alloy-consensus = { version = "2.4.1", default-features = false }
alloy-eips = { version = "2.4.1", default-features = false }
alloy-genesis = { version = "2.4.1", default-features = false }
alloy-primitives = { version = "1.6.1", default-features = false, features = ["map-foldhash", "map-indexmap"] }
alloy-rlp = { version = "0.3.16", default-features = false }
alloy-rpc-types-debug = { version = "2.4.1", default-features = false }
alloy-rpc-types-engine = { version = "2.4.1", default-features = false }
alloy-trie = { version = "0.9.4", default-features = false }
# revm
revm = { version = "42.0.1", default-features = false }
revm-bytecode = { version = "42.0.0", default-features = false }
revm-database-interface = { version = "42.0.0", default-features = false }
revm-state = { version = "42.0.0", default-features = false }
# zkVM standard
zkvm-interface = { git = "https://github.com/eth-act/zkvm-standards", rev = "282cd356c3a0498416bb0619f9c8a347ce9933fb" }
# Ere
ere-platform-core = { git = "https://github.com/eth-act/ere", rev = "8961a4e7ac5c9ca2dc6a2fc848452f23a186b1aa" }
ere-server-client = { git = "https://github.com/eth-act/ere", rev = "8961a4e7ac5c9ca2dc6a2fc848452f23a186b1aa" }
ere-util-tokio = { git = "https://github.com/eth-act/ere", rev = "8961a4e7ac5c9ca2dc6a2fc848452f23a186b1aa" }
# ssz
libssz = { version = "0.3.0", default-features = false, features = ["alloc"] }
libssz-derive = "0.3.0"
libssz-merkle = { version = "0.3.0", default-features = false, features = [
"alloc",
"sha2-backend",
] }
libssz-types = { version = "0.3.0", default-features = false, features = ["alloc"] }
# misc
anyhow = "1.0"
arrayvec = { version = "0.7", default-features = false }
bincode = "1.3"
const-hex = { version = "1.19", default-features = false, features = ["alloc"] }
flate2 = "1.1"
itertools = { version = "0.14", default-features = false, features = [
"use_alloc",
] }
paste = "1.0"
rayon = "1.8"
reqwest = { version = "0.12", default-features = false, features = [
"blocking",
"rustls-tls",
] }
rkyv = "0.8"
serde = { version = "1.0", default-features = false, features = [
"derive",
"alloc",
] }
serde_json = "1.0"
serde_with = { version = "3.16", default-features = false, features = [
"alloc",
] }
sha2 = "0.10"
tar = "0.4"
tempfile = "3.20"
thiserror = { version = "2.0", default-features = false }
walkdir = "2.5"
# Temporary until the revm release containing bluealloy/revm#3855 is published.
[patch.crates-io]
alloy-evm = { git = "https://github.com/alloy-rs/evm", rev = "065a125cde3a5c69990323aecab97ce4ed048237" }
reth-codecs = { git = "https://github.com/paradigmxyz/reth-core", rev = "1207f7ff0534f6a7fe4d9661ea20d070b67d9c8b" }
reth-codecs-derive = { git = "https://github.com/paradigmxyz/reth-core", rev = "1207f7ff0534f6a7fe4d9661ea20d070b67d9c8b" }
reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth-core", rev = "1207f7ff0534f6a7fe4d9661ea20d070b67d9c8b" }
reth-zstd-compressors = { git = "https://github.com/paradigmxyz/reth-core", rev = "1207f7ff0534f6a7fe4d9661ea20d070b67d9c8b" }
revm = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-bytecode = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-context = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-context-interface = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-database = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-database-interface = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-handler = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-inspector = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-interpreter = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-precompile = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }
revm-state = { git = "https://github.com/bluealloy/revm", rev = "45f05bd88fd09e32ea43cf5e94190759ea6ace7c" }