-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (77 loc) · 1.68 KB
/
Copy pathCargo.toml
File metadata and controls
84 lines (77 loc) · 1.68 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
82
83
84
[package]
name = "revm-context"
description = "Revm context crates"
version = "18.0.3"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
rust-version.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lints]
workspace = true
[dependencies]
# revm
context-interface.workspace = true
primitives.workspace = true
database-interface.workspace = true
state.workspace = true
bytecode.workspace = true
# misc
derive-where.workspace = true
cfg-if.workspace = true
# Optional
serde = { workspace = true, features = ["derive", "rc"], optional = true }
[dev-dependencies]
database.workspace = true
bitvec.workspace = true
serde_json.workspace = true
[features]
default = ["std"]
std = [
"serde?/std",
"bytecode/std",
"context-interface/std",
"database/std",
"database-interface/std",
"primitives/std",
"state/std",
"bitvec/std",
"serde_json/std"
]
serde = [
"dep:serde",
"primitives/serde",
"state/serde",
"context-interface/serde",
"bytecode/serde",
"database/serde",
"database-interface/serde",
"derive-where/serde",
"bitvec/serde"
]
dev = [
"memory_limit",
"optional_balance_check",
"optional_block_gas_limit",
"optional_eip3541",
"optional_eip3607",
"optional_eip7623",
"optional_no_base_fee",
"optional_priority_fee_check",
"optional_fee_charge",
]
memory_limit = []
optional_balance_check = []
optional_block_gas_limit = []
optional_eip3541 = []
optional_eip3607 = []
optional_eip7623 = []
optional_no_base_fee = []
optional_priority_fee_check = []
optional_fee_charge = []
map-foldhash = ["primitives/map-foldhash", "state/map-foldhash"]