forked from matter-labs/zksync-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 818 Bytes
/
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
[package]
name = "zkevm_circuits"
version.workspace = true
edition.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
description = "ZKsync Era circuits for EraVM"
[dependencies]
# "Owned" dependencies
zkevm_opcode_defs.workspace = true
cs_derive.workspace = true
boojum.workspace = true
# "External" dependencies
derivative = "2"
serde = { version = "1", features = ["derive"] }
rand = "0.4"
smallvec = { version = "1.13", features = [
"const_generics",
"const_new",
"serde",
] }
arrayvec = "0.7"
itertools = "0.10"
rand_new = { package = "rand", version = "0.8" }
hex = "0.4"
seq-macro = "0.3"
[features]
default = []
log_tracing = ["boojum/log_tracing"]
verbose_circuits = []