forked from flashbots/rollup-boost
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (68 loc) · 2.13 KB
/
Cargo.toml
File metadata and controls
74 lines (68 loc) · 2.13 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
[package]
name = "rollup-boost"
version = "0.1.0"
edition = "2024"
[dependencies]
op-alloy-rpc-types-engine = "0.11.1"
alloy-rpc-types-engine = "0.12.5"
alloy-eips = { version = "0.12.5", features = ["serde"], optional = true }
alloy-primitives = { version = "0.8.10", features = ["rand"] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1.4"
tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
serde = { version = "1", features = ["derive"] }
thiserror = "2.0.12"
clap = { version = "4", features = ["derive", "env"] }
jsonrpsee = { version = "0.24", features = ["server", "http-client", "macros"] }
moka = { version = "0.12.10", features = ["sync"] }
http = "1.1.0"
dotenv = "0.15.0"
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["decompression-full"] }
http-body-util = "0.1.2"
hyper = { version = "1.4.1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
hyper-rustls = { version = "0.27.0", features = ["ring"] }
rustls = { version = "0.23.23", features = ["ring"] }
serde_json = "1.0.96"
opentelemetry = { version = "0.28.0", features = ["trace"] }
opentelemetry-otlp = { version = "0.28.0", features = [
"http-proto",
"http-json",
"reqwest-client",
"trace",
"grpc-tonic",
] }
opentelemetry_sdk = { version = "0.28.0", features = ["rt-tokio"] }
tracing-opentelemetry = "0.29.0"
futures = "0.3.31"
metrics = "0.24.0"
metrics-exporter-prometheus = "0.16.0"
metrics-util = "0.19.0"
eyre = "0.6.12"
paste = "1.0.15"
# dev dependencies for integration tests
parking_lot = "0.12.3"
time = { version = "0.3.36", features = ["macros", "formatting", "parsing"], optional = true }
lazy_static = {version = "1.5.0", optional = true }
[dev-dependencies]
alloy-rpc-types-eth = "0.12.5"
anyhow = "1.0"
assert_cmd = "2.0.10"
predicates = "3.1.2"
tokio-util = { version = "0.7.13" }
nix = "0.15.0"
bytes = "1.2"
reth-rpc-layer = { git = "https://github.com/paradigmxyz/reth.git", rev = "v1.3.0" }
ctor = "0.4.1"
[features]
integration = [
"dep:lazy_static",
"dep:time",
"dep:alloy-eips"
]
[[bin]]
name = "rollup-boost"
path = "src/bin/main.rs"
[lib]
path = "src/lib.rs"