forked from paradigmxyz/reth-exex-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (36 loc) · 776 Bytes
/
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
[package]
name = "remote"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
publish.workspace = true
[dependencies]
# reth
reth-exex.workspace = true
reth-node-api.workspace = true
reth-node-ethereum.workspace = true
reth-tracing.workspace = true
reth.workspace = true
# alloy
alloy-consensus.workspace = true
alloy-eips.workspace = true
alloy-primitives.workspace = true
eyre.workspace = true
prost = "0.13"
tokio-stream = "0.1"
tokio.workspace = true
tonic = "0.12"
[build-dependencies]
tonic-build = "0.12"
[dev-dependencies]
reth-exex-test-utils.workspace = true
[features]
default = []
optimism = []
[[bin]]
name = "remote-exex"
path = "bin/exex.rs"
[[bin]]
name = "remote-consumer"
path = "bin/consumer.rs"