forked from flashbots/contender
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (76 loc) · 2.38 KB
/
Cargo.toml
File metadata and controls
85 lines (76 loc) · 2.38 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
[workspace]
members = [
"crates/bundle_provider",
"crates/cli/",
"crates/core/",
"crates/engine_provider",
"crates/report",
"crates/sqlite_db/",
"crates/testfile/",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.7.3"
rust-version = "1.86"
authors = ["Flashbots"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/flashbots/contender"
repository = "https://github.com/flashbots/contender"
[workspace.dependencies]
contender_core = { path = "crates/core/" }
contender_sqlite = { path = "crates/sqlite_db/" }
contender_testfile = { path = "crates/testfile/" }
contender_bundle_provider = { path = "crates/bundle_provider/" }
contender_engine_provider = { path = "crates/engine_provider/" }
contender_report = { path = "crates/report/" }
tokio = { version = "1.40.0" }
tokio-util = "0.7"
alloy = { version = "1.0.22" }
alloy-signer = { version = "1.0.22", features = ["wallet"] }
serde = "1.0.209"
rand = "0.8.5"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3" }
prometheus = "0.14"
strum = "0.27.1"
thiserror = "2.0.12"
## cli
console-subscriber = "0.4.1"
nu-ansi-term = "0.50.1"
clap = { version = "4.5.16" }
csv = "1.3.0"
miette = { version = "7.6.0" }
url = "2.5.7"
uuid = "1.19.0"
## core
futures = "0.3.30"
async-trait = "0.1.82"
jsonrpsee = { version = "0.24" }
alloy-serde = "0.5.4"
serde_json = "1.0.132"
tower = "0.5.2"
alloy-rpc-types-engine = { version = "1.0.22", default-features = false }
alloy-json-rpc = { version = "1.0.22", default-features = false }
alloy-chains = { version = "0.2.5", default-features = false }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.2", default-features = false }
reth-rpc-layer = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.2", default-features = false }
reth-optimism-node = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.2" }
reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.2" }
op-alloy-consensus = { version = "0.20.0", default-features = false }
op-alloy-network = { version = "0.20.0", default-features = false }
op-alloy-rpc-types = { version = "0.20.0", default-features = false }
ark-bn254 = "0.5.0"
ark-ec = "0.5.0"
ark-ff = "0.5.0"
## sqlite
r2d2_sqlite = "0.25.0"
rusqlite = "0.32.1"
r2d2 = "0.8.10"
## testfile
toml = "0.8.19"
## report
chrono = "0.4.39"
handlebars = "6.3.0"
regex = "1.11.1"
webbrowser = "1.0.3"