forked from 0xEigenLabs/eigen-zeth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
108 lines (89 loc) · 4.51 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[package]
name = "eigen-zeth"
version = "0.1.0"
edition = "2021"
[dependencies]
reth-tasks = { git = "https://github.com/0xEigenLabs/reth", package = "reth-tasks", rev = "8cffebd72" }
reth-rpc = { git = "https://github.com/0xEigenLabs/reth", package = "reth-rpc", rev = "8cffebd72" }
#reth-rpc-api = { git = "https://github.com/0xEigenLabs/reth", package = "reth-rpc-api", rev = "8cffebd72" }
reth-rpc-types = { git = "https://github.com/0xEigenLabs/reth", package = "reth-rpc-types", rev = "8cffebd72" }
reth-provider = { git = "https://github.com/0xEigenLabs/reth", package = "reth-provider", rev = "8cffebd72" }
reth-transaction-pool = { git = "https://github.com/0xEigenLabs/reth", package = "reth-transaction-pool", rev = "8cffebd72" }
reth-primitives = { git = "https://github.com/0xEigenLabs/reth", package = "reth-primitives", rev = "8cffebd72" }
reth-tracing = { git = "https://github.com/0xEigenLabs/reth", package = "reth-tracing", rev = "8cffebd72" }
reth-payload-builder = { git = "https://github.com/0xEigenLabs/reth", package = "reth-payload-builder", rev = "8cffebd72" }
reth-ethereum-payload-builder = { git = "https://github.com/0xEigenLabs/reth", package = "reth-ethereum-payload-builder", rev = "8cffebd72" }
reth-basic-payload-builder = { git = "https://github.com/0xEigenLabs/reth", package = "reth-basic-payload-builder", rev = "8cffebd72" }
reth-node-builder = { git = "https://github.com/0xEigenLabs/reth", package = "reth-node-builder", rev = "8cffebd72" }
reth-node-ethereum = { git = "https://github.com/0xEigenLabs/reth", package = "reth-node-ethereum", rev = "8cffebd72" }
reth-node-core = { git = "https://github.com/0xEigenLabs/reth", package = "reth-node-core", rev = "8cffebd72" }
reth-node-api = { git = "https://github.com/0xEigenLabs/reth", package = "reth-node-api", rev = "8cffebd72" }
reth-db = { git = "https://github.com/0xEigenLabs/reth", package = "reth-db", rev = "8cffebd72" }
reth-blockchain-tree = { git = "https://github.com/0xEigenLabs/reth", package = "reth-blockchain-tree", rev = "8cffebd72" }
reth-beacon-consensus = { git = "https://github.com/0xEigenLabs/reth", rev = "8cffebd72" }
reth-revm = { git = "https://github.com/0xEigenLabs/reth", rev = "8cffebd72" }
reth-interfaces = { git = "https://github.com/0xEigenLabs/reth", rev = "8cffebd72" }
# Database
reth-libmdbx = { git = "https://github.com/0xEigenLabs/reth", package = "reth-libmdbx", rev = "8cffebd72" }
# eth
alloy-rlp = "0.3.4"
#reth-payload-builder = { path = "../reth/crates/payload/builder" }
#reth-basic-payload-builder = { path = "../reth/crates/payload/basic" }
#reth-ethereum-payload-builder = { path = "../reth/crates/payload/ethereum" }
#
#reth-node-builder = { path = "../reth/crates/node-builder" }
#reth-tasks = { path = "../reth/crates/tasks" }
#reth-provider = { path = "../reth/crates/storage/provider" }
#reth-transaction-pool = { path = "../reth/crates/transaction-pool" }
#
#reth-primitives = { path = "../reth/crates/primitives" }
#reth-tracing = { path = "../reth/crates/tracing" }
#reth-node-ethereum = { path = "../reth/crates/node-ethereum" }
#reth-node-core = { path = "../reth/crates/node-core" }
#reth-node-api = { path = "../reth/crates/node-api" }
#reth-rpc-types = { path = "../reth/crates/rpc/rpc-types" }
ethers-providers = { version = "2.0.14", features = ["ws"] }
ethers-core = { version = "2.0.14", default-features = false }
ethers-contract = { version = "2.0.14", features = ["abigen"] }
ethers = "2.0.14"
# lazy_static
once_cell = "1.8.0"
# command
clap = "4.4.8"
# config
config = "0.14.0"
# Async
futures = "0.3.26"
tokio = { version = "1.28.2", features = ["full"] }
async-trait = "0.1.68"
tokio-stream = { version = "0.1" }
# Misc
eyre = "0.6.8"
thiserror = "1.0.40"
anyhow = "1.0"
c-kzg = "0.4.2"
jsonrpsee = { version = "0.20", features = ["server", "macros"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.94"
serial_test = "2.0.0"
hex = "0.4.3"
# revm
#revm = { version = "7.1.0", features = ["std", "secp256k1"] }
#revm = { git = "https://github.com/bluealloy/revm", tag = "v34", features = ["std", "secp256k1"] }
revm-primitives = { version = "3.0.0", features = ["std"], default-features = false }
#revm-inspectors = { git = "https://github.com/paradigmxyz/evm-inspectors", rev = "0ad0338" }
# tonic
tonic = "0.8.1"
prost = "0.11.0"
#log
log = "0.4.0"
env_logger = "0.10"
# uuid
uuid = { version = "1.2", features = ["v4", "fast-rng", "macro-diagnostics"] }
# eth
alloy-chains = { version = "0.1" }
reqwest = "0.12.5"
[dev-dependencies]
pretty_assertions = "1.4.0"
[build-dependencies]
tonic-build = "0.8.0"