forked from bluealloy/revm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 loc) · 1.31 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
[package]
name = "revme"
description = "Rust Ethereum Virtual Machine Executable"
version = "3.0.0-alpha.2"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
# revm
revm = { workspace = true, features = ["std", "hashbrown", "c-kzg", "blst"] }
primitives.workspace = true
database.workspace = true
database-interface.workspace = true
state.workspace = true
specification.workspace = true
bytecode = { workspace = true, features = ["std", "parse"] }
context.workspace = true
context-interface.workspace = true
handler.workspace = true
inspector = { workspace = true, features = ["std", "serde-json"] }
statetest-types.workspace = true
# alloy
alloy-rlp = { workspace = true, features = ["arrayvec", "derive"] }
alloy-sol-types.workspace = true
# misc
hash-db.workspace = true
indicatif.workspace = true
microbench.workspace = true
plain_hasher.workspace = true
serde = { workspace = true, features = ["derive", "rc"] }
serde_json = { workspace = true, features = ["preserve_order"] }
clap = { workspace = true, features = ["derive"] }
thiserror.workspace = true
triehash.workspace = true
walkdir.workspace = true
k256 = { workspace = true, features = ["ecdsa"] }
[dev-dependencies]
criterion.workspace = true
[[bench]]
name = "evm"
harness = false