-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
141 lines (132 loc) · 6.09 KB
/
Cargo.toml
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
[workspace]
members = [
"bin/host",
"crates/executor/client",
"crates/executor/host",
"crates/mpt",
"crates/primitives",
"crates/storage/rpc-db",
"crates/storage/witness-db",
]
exclude = []
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["puma314", "jtguibas", "rkrasiuk"]
repository = "https://github.com/moongate-forks/minimal-reth"
homepage = "https://github.com/moongate-forks/minimal-reth"
exclude = ["**/target"]
version = "0.1.0"
[workspace.dependencies]
eyre = "0.6"
anyhow = { version = "1.0.86", default-features = false }
tracing = { version = "0.1.40", default-features = false }
cfg-if = "1.0.0"
spin = { version = "0.9.8", features = ["mutex"] }
async-trait = "0.1.80"
tokio = { version = "1.21", default-features = false, features = [
"rt",
"rt-multi-thread",
] }
serde_json = "1.0.94"
serde = { version = "1.0", default-features = false, features = ["derive"] }
futures = "0.3"
url = "2.3"
thiserror = "1.0.61"
hex-literal = "0.4.1"
rayon = "1.10.0"
rlp = "0.5.2"
# workspace
reva-rpc-db = { path = "./crates/storage/rpc-db" }
reva-witness-db = { path = "./crates/storage/witness-db" }
reva-client-executor = { path = "./crates/executor/client" }
reva-host-executor = { path = "./crates/executor/host" }
reva-mpt = { path = "./crates/mpt" }
reva-primitives = { path = "./crates/primitives" }
# reth
reth-primitives = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false, features = [
"alloy-compat",
"optimism",
"std",
] }
reth-codecs = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-consensus = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-evm = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-revm = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false, features = [
"std",
] }
reth-node-ethereum = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-evm-ethereum = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false, features = [
"std",
] }
reth-optimism-evm = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false, features = [
"optimism",
] }
reth-storage-errors = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false, features = [
"std",
] }
reth-trie = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-trie-common = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-chainspec = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-optimism-chainspec = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-optimism-forks = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-execution-errors = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-execution-types = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-db = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-errors = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-ethereum-consensus = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false }
reth-optimism-consensus = { git = "https://github.com/lita-xyz/reth", branch = "1.1.1-delendum", default-features = false, features = [
"optimism",
] }
# revm
revm = { version = "17.0.0", features = [
"optimism",
"std",
"serde",
"kzg-rs",
], default-features = false }
revm-primitives = { version = "13.0.0", features = [
"std",
"serde",
], default-features = false }
revm-inspectors = "0.6"
revm-interpreter = { version = "=10.0.1", default-features = false }
revm-precompile = { version = "=11.0.1", default-features = false }
# alloy
alloy-primitives = { version = "0.8.4", features = ["sha3-keccak"] }
alloy-provider = { version = "0.5.4", default-features = false, features = [
"reqwest",
"reqwest-rustls-tls",
] }
alloy-rpc-types = { version = "0.5.4", default-features = false, features = [
"eth",
] }
alloy-json-rpc = "0.5.4"
alloy-rlp = "0.3.4"
alloy-consensus = { version = "0.5.4", default-features = false }
alloy-transport = { version = "0.5.4" }
alloy-transport-http = { version = "0.5.4", features = [
"reqwest-rustls-tls",
], default-features = false }
alloy-eips = { version = "0.5.4", default-features = false }
alloy-trie = "0.5.0"
tower = { version = "0.5", features = ["util"] }
[workspace.lints]
rust.missing_debug_implementations = "warn"
rust.unreachable_pub = "warn"
rust.unused_must_use = "deny"
rust.rust_2018_idioms = { level = "deny", priority = -1 }
rustdoc.all = "warn"
[patch.crates-io]
wait-timeout = { git = "https://github.com/lita-xyz/wait-timeout", branch = "0.2.0-valida" }
rusty-fork = { git = "https://github.com/lita-xyz/rusty-fork", branch = "0.3.0-valida" }
is-terminal = { git = "https://github.com/lita-xyz/is-terminal", branch = "0.4.13-valida" }
cc = { git = "https://github.com/lita-xyz/cc-rs.git", branch = "1.1.18-delendum" }
blst = { git = "https://github.com/lita-xyz/blst.git", branch = "0.3.13-delendum" }
c-kzg = { git = "https://github.com/lita-xyz/c-kzg-4844.git", branch = "1.0.3-delendum" }
zstd-sys = { git = "https://github.com/lita-xyz/zstd-rs.git", branch = "zstd-sys-2.0.13-delendum" }
proptest = { git = "https://github.com/lita-xyz/proptest", branch = "1.5.0-valida" }
pprof = { git = "https://github.com/lita-xyz/pprof-rs", branch = "0.13.0-valida" }
alloy-primitives = { git = "https://github.com/lewis1revill/core", branch = "0.8.15-valida" }
alloy-chains = { git = "https://github.com/lita-xyz/chains", branch = "ljr-fix-hex" }