forked from 0xPolygonZero/zk_evm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
133 lines (126 loc) · 3.28 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[workspace]
members = [
"mpt_trie",
"smt_trie",
"proof_gen",
"trace_decoder",
"evm_arithmetization",
"proc_macro",
"zero_bin/leader",
"zero_bin/worker",
"zero_bin/common",
"zero_bin/ops",
"zero_bin/verifier",
"zero_bin/rpc",
"zero_bin/prover",
"compat",
"zero_bin/coordinator",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/0xPolygonZero/zk_evm"
homepage = "https://github.com/0xPolygonZero/zk_evm"
keywords = ["cryptography", "STARK", "plonky2", "ethereum", "zk"]
categories = ["cryptography::cryptocurrencies"]
[workspace.dependencies]
alloy = { git = "https://github.com/alloy-rs/alloy", tag = 'v0.1.1', default-features = false, features = [
"consensus",
"reqwest",
"json-rpc",
"rlp",
"rpc",
"rpc-client",
"rpc-types-eth",
"rpc-types-trace",
"providers",
"transports",
"transport-http",
"rpc-types-debug",
] }
anyhow = "1.0.86"
async-stream = "0.3.5"
axum = "0.7.5"
bytes = "1.6.0"
ciborium = "0.2.2"
ciborium-io = "0.2.2"
clap = { version = "4.5.7", features = ["derive", "env"] }
compat = { path = "compat" }
__compat_primitive_types = { version = "0.12.2", package = "primitive-types" }
criterion = "0.5.1"
dotenvy = "0.15.7"
enum-as-inner = "0.6.0"
enumn = "0.1.13"
env_logger = "0.11.3"
ethereum-types = "0.14.1"
eth_trie = "0.4.0"
evm_arithmetization = { path = "evm_arithmetization", version = "0.2.0" }
futures = "0.3.30"
hashbrown = "0.14.5"
hex = "0.4.3"
hex-literal = "0.4.1"
impl-codec = "0.6.0"
impl-num-traits = "0.1.2"
impl-rlp = "0.3.0"
impl-serde = "0.4.0"
itertools = "0.13.0"
keccak-hash = "0.10.0"
log = "0.4.21"
mpt_trie = { path = "mpt_trie", version = "0.3.0" }
num = "0.4.3"
num-bigint = "0.4.5"
num-traits = "0.2.19"
once_cell = "1.19.0"
paladin-core = { git = "https://github.com/julian-bcw/paladin-bcw", rev = "b6fa8d01d5b56d0e3257894dfa9052f4fc2af76f" }
parking_lot = "0.12.3"
paste = "1.0.15"
pest = "2.7.10"
pest_derive = "2.7.10"
pretty_env_logger = "0.5.0"
proof_gen = { path = "proof_gen", version = "0.2.0" }
rand = "0.8.5"
rand_chacha = "0.3.1"
ripemd = "0.1.3"
rlp = "0.5.2"
rlp-derive = "0.1.0"
ruint = "1.12.3"
serde = "1.0.203"
serde_json = "1.0.118"
serde_path_to_error = "0.1.16"
serde_with = "3.8.1"
smt_trie = { path = "smt_trie", version = "0.1.0" }
sha2 = "0.10.8"
static_assertions = "1.1.0"
thiserror = "1.0.61"
tiny-keccak = "2.0.2"
tokio = { version = "1.38.0", features = ["full"] }
toml = "0.8.14"
tower = "0.4"
trace_decoder = { path = "trace_decoder", version = "0.4.0" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uint = "0.9.5"
url = "2.5.2"
# zero-bin related dependencies
ops = { path = "zero_bin/ops" }
prover = { path = "zero_bin/prover" }
rpc = { path = "zero_bin/rpc" }
zero_bin_common = { path = "zero_bin/common" }
leader = { path = "zero_bin/leader" }
# plonky2-related dependencies
plonky2 = "0.2.2"
plonky2_maybe_rayon = "0.2.0"
plonky2_util = "0.2.0"
starky = "0.4.0"
# proc macro related dependencies
proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
trybuild = "1.0"
zk_evm_proc_macro = { path = "proc_macro" }
# GCP benchmark test dependencies
google-cloud-storage = "0.16.0"
google-cloud-googleapis = "0.12.0"
google-cloud-auth = "0.13.2"
chrono = "0.4.38"