-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
130 lines (118 loc) · 5.2 KB
/
Cargo.toml
File metadata and controls
130 lines (118 loc) · 5.2 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
[workspace.package]
version = "0.4.2"
edition = "2024"
rust-version = "1.92"
license = "MIT"
homepage = "https://github.com/flashbots/rblib"
repository = "https://github.com/flashbots/rblib"
authors = ["Flashbots <info@flashbots.net>", "Karim Agha <karim@flashbots.net>", "Jules Doumeche <jules@flashbots.net>"]
exclude = [".github/"]
[workspace]
members = [
"crates/rblib",
"crates/core",
"crates/pipeline",
"crates/pipeline-macros",
"crates/test-utils-macros",
]
resolver = "2"
[workspace.lints.rust]
type_alias_bounds = "allow"
unreachable_pub = "warn"
[workspace.lints.clippy]
tabs_in_doc_comments = "allow"
pedantic = { level = "warn", priority = -1 }
wildcard_imports = "allow"
missing_errors_doc = "allow"
must_use_candidate = "allow"
redundant_closure_for_method_calls = "allow"
similar_names = "allow"
cast_precision_loss = "allow"
[workspace.metadata.scripts]
lint = "cargo clippy --all-targets -- -D warnings"
[workspace.dependencies]
# Common
itertools = "0.14"
eyre = "0.6"
thiserror = "2.0"
tracing = "0.1"
derive_more = { version = "2.0", features = ["deref", "from", "into"] }
smallvec = "1.15"
dashmap = "6.1"
uuid = "1.17"
futures = "0.3"
tokio = "1.47"
tokio-stream = "0.1.17"
serde = "1.0"
jsonrpsee = "0.26.0"
parking_lot = "0.12"
metrics = "0.24.0"
priority-queue = "2.0.0"
rand = "0.9"
# Alloy dependencies
alloy-origin = { version = "1.5.2", package = "alloy", features = [
"k256",
"rpc-types-mev",
] }
alloy-evm = { version = "0.27.0", features = ["op"] }
alloy-serde = "1.5.2"
alloy-json-rpc = "1.5.2"
# Reth dependencies
reth-origin = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2", package = "reth" }
reth-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-errors = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-cli = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-cli-commands = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-rpc-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-basic-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-ethereum-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2", features = [
"node",
"evm",
] }
reth-network-peers = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-payload-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-node-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-metrics = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-ipc = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-tracing-otlp = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-eth-wire-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-network = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-node-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-db-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
# Revm dependencies
revm-database = "10.0"
# Reth-optimism dependencies (optional)
op-alloy = { version = "0.23.1", features = ["full"] }
op-alloy-rpc-types-engine = { version = "0.23.1", default-features = false }
op-alloy-flz = "0.13.1"
reth-optimism-node = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-optimism-forks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-optimism-rpc = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-optimism-txpool = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-optimism-consensus = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-optimism-evm = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-payload-util = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-optimism-cli = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" }
# test-utils
jsonrpsee-core = { version = "0.26.0", features = ["client"] }
nanoid = "0.4"
alloy-genesis = { version = "1.0", default-features = false }
ctor = "0.5"
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "json"] }
# unix-only allocator
tikv-jemallocator = "0.6"
# macro
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full"] }
proc-macro-crate = "3.3.0"