This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Cargo.toml
65 lines (53 loc) · 1.62 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
[package]
name = "zkevm_test_harness"
version = "0.150.2"
edition = "2021"
authors = ["Alex Vlasov <alex.m.vlasov@gmail.com>", "Konstantin Panarin <kp@matterlabs.dev>"]
homepage = "https://zksync.io/"
repository = "https://github.com/matter-labs/era-zkevm_test_harness/"
license = "MIT OR Apache-2.0"
keywords = ["blockchain", "zksync"]
categories = ["cryptography"]
description = "ZKsync Era proving utilities"
resolver = "2"
# [[bin]]
# name = "circuit_limit_estimator"
# path = "src/circuit_limit_estimator/main.rs"
# [[bin]]
# name = "circuit_synthesis_performance_test"
# path = "src/circuit_synthesis_performance_test/main.rs"
[[bin]]
name = "geometry_config_generator"
path = "src/geometry_config_generator/main.rs"
[dependencies]
circuit_definitions = { version = "=0.150.2", path = "./circuit_definitions"}
circuit_sequencer_api = { version = "=0.150.2", path = "./circuit_sequencer_api"}
kzg = { package = "zksync_kzg", version = "=0.150.2", path = "./kzg"}
zkevm-assembly = "=0.150.0"
rand = "0.4"
rayon = "1.10"
derivative = "2.2"
hex = "0.4"
serde = {version = "1", features = ["derive"]}
serde_json = "1.0"
crossbeam = "0.8"
tracing = { version= "0.1.26" }
bincode = "1.3"
test-log = "0.2"
env_logger = "0.9"
smallvec = "1.13"
structopt = "0.3.26"
codegen = "0.2.0"
regex = { version = "1.10.6", features = ["pattern"] }
[dev-dependencies]
rand = "0.4"
indicatif = "0.16"
[profile.release]
debug = false
lto = false
[profile.bench]
debug = false
[features]
verbose_circuits = ["circuit_definitions/verbose_circuits", "circuit_sequencer_api/verbose_circuits"]
log_tracing = ["circuit_definitions/log_tracing"]
default = ["log_tracing"]