-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathCargo.toml
74 lines (66 loc) · 1.89 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
[package]
name = "reth-evm"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
# reth
reth-execution-errors.workspace = true
reth-execution-types.workspace = true
reth-metrics = { workspace = true, optional = true }
reth-primitives-traits.workspace = true
reth-storage-api.workspace = true
reth-storage-errors.workspace = true
reth-trie-common.workspace = true
reth-ethereum-primitives = { workspace = true, optional = true }
revm.workspace = true
op-revm = { workspace = true, optional = true }
# alloy
alloy-primitives.workspace = true
alloy-eips.workspace = true
alloy-evm.workspace = true
alloy-consensus.workspace = true
auto_impl.workspace = true
derive_more.workspace = true
futures-util.workspace = true
metrics = { workspace = true, optional = true }
parking_lot = { workspace = true, optional = true }
[dev-dependencies]
reth-ethereum-forks.workspace = true
reth-ethereum-primitives.workspace = true
parking_lot.workspace = true
alloy-consensus.workspace = true
metrics-util = { workspace = true, features = ["debugging"] }
[features]
default = ["std"]
std = [
"reth-primitives-traits/std",
"alloy-eips/std",
"alloy-primitives/std",
"alloy-consensus/std",
"revm/std",
"reth-ethereum-forks/std",
"reth-ethereum-primitives?/std",
"alloy-evm/std",
"op-revm?/std",
"reth-execution-errors/std",
"reth-execution-types/std",
"reth-storage-errors/std",
"futures-util/std",
"derive_more/std",
"reth-storage-api/std",
"reth-trie-common/std",
]
metrics = ["std", "dep:metrics", "dep:reth-metrics"]
test-utils = [
"dep:parking_lot",
"reth-ethereum-primitives/test-utils",
"reth-primitives-traits/test-utils",
"reth-trie-common/test-utils",
]
op = ["op-revm", "alloy-evm/op", "reth-primitives-traits/op"]