-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
130 lines (113 loc) · 4.71 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
[workspace]
members = ["crates/*", "bin/*"]
resolver = "2"
[workspace.package]
version = "0.11.0"
edition = "2021"
license = "MIT"
rust-version = "1.81"
authors = ["clabby", "refcell"]
homepage = "https://github.com/anton-rs/hilo"
repository = "https://github.com/anton-rs/hilo"
keywords = ["ethereum", "optimism", "crypto"]
categories = ["cryptography", "cryptography::cryptocurrencies"]
exclude = ["benches/", "tests/"]
[workspace.lints.rustdoc]
all = "warn"
[workspace.lints.rust]
missing-debug-implementations = "warn"
missing-docs = "warn"
unreachable-pub = "warn"
unused-must-use = "deny"
rust-2018-idioms = "deny"
unnameable-types = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
missing-const-for-fn = "warn"
use-self = "warn"
option-if-let-else = "warn"
redundant-clone = "warn"
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
# [patch.crates-io]
# kona-derive = { git = "https://github.com/anton-rs/kona", branch = "main" }
# kona-driver = { git = "https://github.com/anton-rs/kona", branch = "main" }
[workspace.dependencies]
# Workspace
hilo = { version = "0.11.0", path = "crates/hilo", default-features = false }
hilo-net = { version = "0.11.0", path = "crates/net", default-features = false }
hilo-node = { version = "0.11.0", path = "crates/node", default-features = false }
hilo-driver = { version = "0.11.0", path = "crates/driver", default-features = false }
hilo-engine = { version = "0.11.0", path = "crates/engine", default-features = false }
hilo-providers-local = { version = "0.11.0", path = "crates/providers-local", default-features = false }
hilo-providers-alloy = { version = "0.11.0", path = "crates/providers-alloy", default-features = false }
# Kona
kona-derive = { version = "0.2.0", default-features = false }
kona-driver = { version = "0.2.0", default-features = false }
# Alloy
alloy-rlp = { version = "0.3.9", default-features = false }
alloy-eips = { version = "0.7.2", default-features = false }
alloy-serde = { version = "0.7.2", default-features = false }
alloy-signer = { version = "0.7.2", default-features = false }
alloy-network = { version = "0.7.2", default-features = false }
alloy-provider = { version = "0.7.2", default-features = false }
alloy-consensus = { version = "0.7.2", default-features = false }
alloy-rpc-types = { version = "0.7.2", default-features = false }
alloy-transport = { version = "0.7.2", default-features = false }
alloy-rpc-client = { version = "0.7.2", default-features = false }
alloy-primitives = { version = "0.8.14", default-features = false }
alloy-rpc-types-eth = { version = "0.7.2", default-features = false }
alloy-node-bindings = { version = "0.7.2", default-features = false }
alloy-transport-http = { version = "0.7.2", default-features = false }
alloy-rpc-types-beacon = { version = "0.7.2", default-features = false }
alloy-rpc-types-engine = { version = "0.7.2", default-features = false }
# OP Alloy
op-alloy-genesis = { version = "0.7.2", default-features = false }
op-alloy-provider = { version = "0.7.2", default-features = false }
op-alloy-protocol = { version = "0.7.2", default-features = false }
op-alloy-registry = { version = "0.7.2", default-features = false }
op-alloy-consensus = { version = "0.7.2", default-features = false }
op-alloy-rpc-types-engine = { version = "0.7.2", default-features = false }
# Reth
reth-exex = { git = "https://github.com/paradigmxyz/reth", rev = "aea5613" }
reth-provider = { git = "https://github.com/paradigmxyz/reth", rev = "aea5613" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "aea5613" }
reth-execution-types = { git = "https://github.com/paradigmxyz/reth", rev = "aea5613" }
# Serialization
serde = { version = "1.0.215", default-features = false }
serde_json = { version = "1.0.133", default-features = false }
# Tracing
tracing = { version = "0.1.41", default-features = false }
tracing-subscriber = { version = "0.3.19", default-features = false }
metrics-exporter-prometheus = { version = "0.16.0", default-features = false }
# Networking
snap = "1.1.1"
discv5 = "0.9.0"
libp2p = "0.54.1"
openssl = "0.10.68"
libp2p-identity = "0.2.10"
# Testing
arbtest = "0.3.1"
arbitrary = "1.4.1"
# CLI
clap = "4.5.21"
figment = { version = "0.10.19", features = ["toml", "env"] }
# Misc
url = "2.5.4"
lru = "0.12.5"
eyre = "0.6.12"
again = "0.1.2"
tokio = "1.42.0"
futures = "0.3.31"
reqwest = "0.12.9"
tower = "0.5.1"
http-body-util = "0.1.2"
parking_lot = "0.12.3"
async-trait = "0.1.83"
futures-timer = "3.0.3"
unsigned-varint = "0.8.0"
thiserror = { version = "2.0.4", default-features = false }
derive_more = { version = "1.0.0", default-features = false }
lazy_static = { version = "1.5.0", default-features = false }
ctrlc = { version = "3.4.5", features = ["termination"] }