forked from 0xPolygonZero/zk_evm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (74 loc) · 2.16 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
75
76
77
78
79
80
81
[package]
name = "trace_decoder"
description = "Ethereum node witness -> Prover input"
authors = ["Polygon Zero"]
version = "0.6.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
keywords.workspace = true
[dependencies]
alloy = { workspace = true }
alloy-compat = "0.1.0"
anyhow = { workspace = true }
bitflags = { workspace = true }
bitvec = { workspace = true }
bytes = { workspace = true }
ciborium = { workspace = true }
ciborium-io = { workspace = true }
copyvec = "0.2.0"
either = { workspace = true }
enum-as-inner = { workspace = true }
ethereum-types = { workspace = true }
hex = { workspace = true }
hex-literal = { workspace = true }
itertools = { workspace = true }
keccak-hash = { workspace = true }
log = { workspace = true }
nunny = { workspace = true, features = ["serde"] }
plonky2 = { workspace = true }
rlp = { workspace = true }
serde = { workspace = true }
stackstack = "0.3.0"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = { workspace = true }
u4 = { workspace = true }
winnow = { workspace = true }
# Local dependencies
evm_arithmetization = { workspace = true }
mpt_trie = { workspace = true }
smt_trie = { workspace = true }
zk_evm_common = { workspace = true }
[dev-dependencies]
alloy = { workspace = true }
alloy-compat = "0.1.0"
assert2 = "0.3.15"
camino = "1.1.9"
clap = { workspace = true }
criterion = { workspace = true }
glob = "0.3.1"
libtest-mimic = "0.7.3"
plonky2_maybe_rayon = { workspace = true }
pretty_assertions = "1.4.0"
zero = { workspace = true }
pretty_env_logger = { workspace = true }
serde_json = { workspace = true }
serde_path_to_error = { workspace = true }
[features]
default = ["eth_mainnet"]
eth_mainnet = ["evm_arithmetization/eth_mainnet", "zero/eth_mainnet"]
cdk_erigon = ["evm_arithmetization/cdk_erigon", "zero/cdk_erigon"]
polygon_pos = ["evm_arithmetization/polygon_pos", "zero/polygon_pos"]
[[bench]]
name = "block_processing"
harness = false
required-features = ["eth_mainnet"]
[[test]]
name = "consistent-with-header"
harness = false
required-features = ["eth_mainnet"]
[[test]]
name = "simulate-execution"
harness = false
required-features = ["eth_mainnet"]