-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathCargo.toml
74 lines (63 loc) · 1.83 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
[workspace]
resolver = "2"
members = [
"bin/mev",
"bin/utils",
"mev-boost-rs",
"mev-relay-rs",
"mev-build-rs",
"mev-rs",
]
default-members = ["bin/mev"]
[workspace.package]
version = "0.3.0"
[profile.release]
lto = "thin"
strip = "debuginfo"
[profile.maxperf]
inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false
[workspace.dependencies]
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "cf3c404043230559660810bc0c9d6d5a8498d819" }
beacon-api-client = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "cf3c404043230559660810bc0c9d6d5a8498d819" }
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.0" }
reth-basic-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.0" }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.0" }
reth-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.0" }
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.0" }
alloy = { version = "0.5.4", features = [
# "consensus",
# "eips",
"signers",
"signer-local",
"signer-mnemonic",
] }
# TODO: use `alloy` crate with `eips` feature, should be possible in next reth release
alloy-eips = "0.4.2"
# TODO: use `alloy` crate with `eips` feature, should be possible in next reth release
alloy-consensus = "0.4.2"
futures = "0.3.21"
tokio = "1.0"
tokio-stream = "0.1.15"
axum = "0.6.4"
hyper = "0.14"
tracing = "0.1"
tracing-subscriber = "0.3"
http = "0.2.7"
url = { version = "2.2.2", default-features = false }
serde_json = "1.0.92"
async-trait = "0.1.53"
serde = "1.0"
thiserror = "1.0.30"
parking_lot = "0.12.1"
toml = "0.8.2"
rayon = "1.8.0"
pin-project = "1.0.12"
backoff = "0.4.0"
eyre = "0.6.8"
futures-util = "0.3.30"
sha2 = "0.10.8"
rand = "0.8.5"
clap = "4.1.4"