-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (44 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
52 lines (44 loc) · 1.2 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
[package]
name = "reth-payload-builder"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "reth payload builder"
[lints]
workspace = true
[dependencies]
# reth
reth-execution-cache.workspace = true
reth-primitives-traits.workspace = true
reth-chain-state.workspace = true
reth-payload-builder-primitives.workspace = true
reth-payload-primitives.workspace = true
reth-ethereum-engine-primitives.workspace = true
reth-trie-parallel.workspace = true
# alloy
alloy-consensus.workspace = true
alloy-primitives.workspace = true
alloy-rpc-types = { workspace = true, features = ["engine"] }
# async
tokio = { workspace = true, features = ["sync"] }
tokio-stream.workspace = true
futures-util.workspace = true
# metrics
reth-metrics.workspace = true
metrics.workspace = true
# misc
derive_more.workspace = true
tracing.workspace = true
[dev-dependencies]
tokio = { workspace = true, features = ["sync", "rt"] }
[features]
test-utils = [
"reth-chain-state/test-utils",
"reth-primitives-traits/test-utils",
"tokio/rt",
"reth-execution-cache/test-utils",
"reth-trie-parallel/test-utils",
]