forked from taikoxyz/alethia-reth
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
168 lines (151 loc) · 8.84 KB
/
Copy pathCargo.toml
File metadata and controls
168 lines (151 loc) · 8.84 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
[workspace]
members = [
"bin/alethia-reth",
"crates/block",
"crates/chainspec",
"crates/cli",
"crates/consensus",
"crates/db",
"crates/evm",
"crates/node",
"crates/node-builder",
"crates/payload",
"crates/primitives",
"crates/rpc",
]
resolver = "2"
[workspace.package]
version = "0.6.0"
edition = "2024"
rust-version = "1.88"
license = "MIT"
[workspace.dependencies]
# alloy
alloy-chains = { version = "0.2.5", default-features = false }
alloy-consensus = { version = "1.6.3", default-features = false }
alloy-eips = { version = "1.6.3", default-features = false }
alloy-evm = { version = "0.27.2", default-features = false }
alloy-genesis = { version = "1.6.3", default-features = false }
alloy-hardforks = "0.4.5"
alloy-json-rpc = { version = "1.6.3", default-features = false }
alloy-network = { version = "1.6.3", default-features = false }
alloy-primitives = { version = "1.5.6", default-features = false, features = [
"map-foldhash",
] }
alloy-rlp = { version = "0.3.13", default-features = false, features = [
"core-net",
] }
alloy-rpc-client = { version = "1.6.3", default-features = false }
alloy-rpc-types-engine = { version = "1.6.3", default-features = false }
alloy-rpc-types-eth = { version = "1.6.3", default-features = false }
alloy-rpc-types-trace = { version = "1.6.3", default-features = false }
alloy-rpc-types-txpool = { version = "1.6.3", default-features = false }
alloy-serde = { version = "1.6.3", default-features = false }
alloy-signer = { version = "1.6.3", default-features = false }
alloy-signer-local = { version = "1.6.3", default-features = false }
alloy-sol-types = { version = "1.5.6", default-features = false }
# general utilities
arbitrary = "1.3"
async-trait = "0.1.68"
auto_impl = "1"
bincode = { version = "2.0.1", default-features = false }
clap = "4"
derive_more = { version = "2", default-features = false, features = ["full"] }
eyre = "0.6"
rand = "0.9"
# rpc
jsonrpsee = "0.26.0"
jsonrpsee-core = "0.26.0"
jsonrpsee-http-client = "0.26.0"
jsonrpsee-server = "0.26.0"
jsonrpsee-types = "0.26.0"
# optimism
op-alloy-flz = { version = "0.13.1", default-features = false }
# data encoding
flate2 = "1.1.5"
parity-scale-codec = "3.2.1"
# reth
reth = { git = "https://github.com/paradigmxyz/reth", package = "reth", tag = "v1.11.0", default-features = false }
reth-basic-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-chain-state = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-cli = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-cli-runner = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-cli-commands = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-cli-util = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-codecs = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-consensus-common = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-storage-errors = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-storage-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-db-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-engine-local = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-engine-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-engine-tree = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-errors = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-ethereum-cli = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-ethereum-consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-ethereum-engine-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-ethereum-forks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-ethereum-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-evm-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-network = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-network-peers = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-node-metrics = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-node-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-node-core = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-payload-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-payload-validator = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-revm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-rpc = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-rpc-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-rpc-convert = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-rpc-engine-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-rpc-server-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-tracing = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-tasks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-trie-common = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
reth-trie-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.11.0", default-features = false }
# revm
revm-database-interface = { version = "9.0.0", default-features = false }
# serialization
serde = { version = "1.0", default-features = false }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
serde_with = { version = "3", default-features = false, features = ["macros"] }
# crypto
sha2 = { version = "0.10", default-features = false }
# error handling
thiserror = { version = "2.0.0", default-features = false }
# async utilities
tokio = { version = "1.44.2", default-features = false }
# observability
tracing = { version = "0.1.0", default-features = false }
[profile.dev]
debug = "line-tables-only"
split-debuginfo = "unpacked"
[profile.dev.package]
proptest.opt-level = 3
rand_chacha.opt-level = 3
rand_xorshift.opt-level = 3
unarray.opt-level = 3
[profile.debug-fast]
inherits = "release"
debug = true
lto = "thin"
[profile.maxperf]
inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false