forked from bluealloy/revm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (45 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
52 lines (45 loc) · 1.18 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 = "revm-interpreter"
description = "Revm Interpreter that executes bytecode."
version = "16.0.0-alpha.2"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lints.rust]
unreachable_pub = "warn"
unused_must_use = "deny"
rust_2018_idioms = "deny"
[lints.rustdoc]
all = "warn"
[dependencies]
# revm
bytecode.workspace = true
primitives.workspace = true
specification.workspace = true
context-interface.workspace = true
# optional
serde = { workspace = true, features = ["derive", "rc"], optional = true }
[dev-dependencies]
database-interface.workspace = true
walkdir.workspace = true
serde_json.workspace = true
bincode.workspace = true
[features]
default = ["std"]
std = ["serde?/std", "primitives/std", "context-interface/std"]
hashbrown = ["primitives/hashbrown"]
serde = [
"dep:serde",
"primitives/serde",
"bytecode/serde",
"context-interface/serde",
]
arbitrary = ["std", "primitives/arbitrary"]
# TODO : Should be set from Context or from crate that consumes this PR.
memory_limit = []