-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (74 loc) · 2.3 KB
/
Copy pathCargo.toml
File metadata and controls
81 lines (74 loc) · 2.3 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
75
76
77
78
79
80
81
[package]
name = "ev-node"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Evolve node implementation"
[dependencies]
# Evolve dependencies
ev-common = { path = "../common" }
evolve-ev-reth = { path = "../evolve" }
ev-revm = { path = "../ev-revm" }
# Reth dependencies
reth-node-builder.workspace = true
reth-chainspec.workspace = true
reth-ethereum = { workspace = true, features = ["node", "cli", "pool"] }
reth-ethereum-forks.workspace = true
reth-ethereum-payload-builder.workspace = true
reth-payload-primitives.workspace = true
reth-primitives.workspace = true
reth-primitives-traits.workspace = true
reth-node-api.workspace = true
reth-provider = { workspace = true, features = ["test-utils"] }
reth-payload-builder.workspace = true
reth-basic-payload-builder.workspace = true
reth-engine-local.workspace = true
reth-revm.workspace = true
reth-trie-db.workspace = true
# Additional reth dependencies for payload builder
reth-node-types.workspace = true
reth-payload-builder-primitives.workspace = true
reth-execution-types.workspace = true
reth-evm-ethereum.workspace = true
reth-evm.workspace = true
reth-errors.workspace = true
reth-node-core.workspace = true
reth-rpc-builder.workspace = true
reth-rpc-api.workspace = true
reth-rpc-engine-api.workspace = true
reth-engine-primitives.workspace = true
reth-ethereum-primitives.workspace = true
# Alloy dependencies
alloy-rpc-types.workspace = true
alloy-rpc-types-engine.workspace = true
alloy-primitives.workspace = true
alloy-eips.workspace = true
alloy-consensus.workspace = true
alloy-evm.workspace = true
# Core dependencies
eyre.workspace = true
tracing.workspace = true
tokio = { workspace = true, features = ["full"] }
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
thiserror.workspace = true
async-trait.workspace = true
futures.workspace = true
clap.workspace = true
[dev-dependencies]
# Test dependencies
reth-testing-utils.workspace = true
reth-db.workspace = true
reth-evm-ethereum.workspace = true
reth-transaction-pool.workspace = true
reth-consensus.workspace = true
reth-tasks.workspace = true
reth-tracing.workspace = true
alloy-genesis.workspace = true
tempfile.workspace = true
hex = "0.4"
[lints]
workspace = true