-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
68 lines (59 loc) · 2.14 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
[package]
name = "rbuilder-operator"
version = "0.1.0"
edition = "2021"
[dependencies]
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.2" }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.2" }
reth-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.1.2" }
alloy-primitives = { version = "0.8.11", default-features = false }
alloy-provider = { version = "0.6.4", features = ["ipc", "pubsub"] }
alloy-json-rpc = { version = "0.6.4" }
alloy-transport-http = { version = "0.6.4" }
alloy-transport = { version = "0.6.4" }
alloy-rpc-types-beacon = { version = "0.6.4", features = ["ssz"] }
alloy-signer-local = { version = "0.6.4" }
alloy-signer = { version = "0.6.4" }
alloy-rpc-client = { version = "0.6.4" }
clap = { version = "4.4.3", features = ["derive", "env"] }
tokio = "1.32.0"
tokio-util = "0.7.10"
eyre = "0.6.8"
serde = "1.0.188"
serde_json = "1.0.105"
serde_with = { version = "3.8.1", features = ["time_0_3"] }
toml = "0.8.8"
jsonrpsee = { version = "0.20.3", features = ["full"] }
tracing = "0.1.37"
time = { version = "0.3.28", features = ["macros", "formatting", "parsing"] }
thiserror = "1.0.47"
tungstenite = "0.23.0"
ahash = "0.8.6"
itertools = "0.11.0"
rand = "0.8.5"
crossbeam-queue = "0.3.10"
lazy_static = "1.4.0"
clickhouse = { version = "0.12.2", features = ["time", "uuid", "native-tls"] }
uuid = { version = "1.10.0", features = ["serde", "v4", "v5"] }
mockall = "0.12.1"
prometheus = "0.13.4"
ctor = "0.2"
flume = "0.11.0"
redis = "0.25.4"
tonic = "0.8"
prost = "0.11"
tokio-stream = { version = "0.1", features = ["net"] }
futures = "0.3"
tower = "0.4"
reqwest = { version = "0.11.20", features = ["blocking"] }
secp256k1 = { version = "0.29" }
url = "2.4.1"
http = "0.2.9"
hyper = "0.14"
futures-util = "0.3"
metrics_macros = { git = "https://github.com/flashbots/rbuilder.git", rev = "945f0395996b5ed24fc4f61c49e6b6f7869b7406"}
#rbuilder = {path="./../rbuilder/crates/rbuilder"}
rbuilder = { git = "https://github.com/flashbots/rbuilder.git", rev = "945f0395996b5ed24fc4f61c49e6b6f7869b7406"}
[build-dependencies]
built = { version = "0.7.1", features = ["git2", "chrono"] }
tonic-build = "0.8"