-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (42 loc) · 1.06 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
[package]
name = "howitzer-fpvm"
description = "An implementation of the Howitzer Fault Proof VM"
edition = "2021"
version.workspace = true
authors.workspace = true
[dependencies]
# workspace
alloy-primitives = { workspace = true, features = ["rlp", "serde"] }
serde.workspace = true
serde_json.workspace = true
anyhow.workspace = true
tokio.workspace = true
kona-preimage.workspace = true
kona-common.workspace = true
tracing.workspace = true
# external
async-trait = "0.1.81"
alloy-sol-types = "0.7.7"
alloy-rlp = "0.3.7"
once_cell = "1.19.0"
elf = "0.7.4"
nybbles = "0.2.1"
rustc-hash = "2.0.0"
# evm
revm = { version = "12.1.0", optional = true }
[dev-dependencies]
alloy-trie = "0.4.1"
rand = "0.8.5"
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }
pprof = { version = "0.13.0", features = ["criterion", "flamegraph", "frame-pointer"] }
proptest = "1.4.0"
[features]
mipsevm = ["dep:revm"]
asm-keccak = ["alloy-primitives/asm-keccak"]
test-utils = []
[[bench]]
name = "memory"
harness = false
[[bench]]
name = "execution"
harness = false