-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (34 loc) · 984 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
[package]
name = "node-db"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "swap"
path = "example/swap.rs"
[[bin]]
name = "quote"
path = "example/quote.rs"
[[bin]]
name = "custom-slot"
path = "example/custom_slot.rs"
[[bin]]
name = "custom-account"
path = "example/custom_account.rs"
[[bin]]
name = "approval"
path = "example/approval.rs"
[dependencies]
anyhow = "1.0.90"
eyre = "0.6.12"
reth = {git = "https://github.com/paradigmxyz/reth"}
reth-db = {git = "https://github.com/paradigmxyz/reth", package = "reth-db"}
reth-chainspec = {git = "https://github.com/paradigmxyz/reth", package = "reth-chainspec"}
reth-node-ethereum = {git = "https://github.com/paradigmxyz/reth", package = "reth-node-ethereum"}
tokio = { version = "1.40.0", features = ["full"] }
futures = "0.3.31"
dotenv = "0.15.0"
env_logger = "0.11.5"
log = "0.4.22"
alloy = { version = "0.5.2", features = ["contract", "dyn-abi"] }
revm = { version = "18.0.0", features = ["alloydb"] }
foldhash = "0.1.3"