forked from matter-labs/era-zkevm_test_harness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (44 loc) · 1.43 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
[package]
name = "zkevm_test_harness"
version = "1.3.2"
edition = "2021"
authors = ["Alex Vlasov <[email protected]>", "Konstantin Panarin <[email protected]>"]
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]
# zk_evm = {path = "../zk_evm"}
# sync_vm = {path = "../sync_vm", features = ["external_testing"]}
# zkevm-assembly = {path = "../zkEVM-assembly"}
# circuit_testing = {path = "../circuit_testing"}
zkevm-assembly = {git = "https://github.com/matter-labs/era-zkEVM-assembly.git", branch = "v1.3.2"}
zk_evm = {git = "https://github.com/matter-labs/era-zk_evm.git", branch = "v1.3.2"}
sync_vm = {git = "https://github.com/matter-labs/era-sync_vm.git", branch = "v1.3.2", features = ["external_testing"]}
circuit_testing = {git = "https://github.com/matter-labs/era-circuit_testing.git", branch = "main"}
num-bigint = "0.4"
num-integer = "0.1"
num-traits = "0.2"
rayon = "*"
derivative = "*"
hex = "*"
serde = {version = "1", features = ["derive"]}
serde_json = "1.0"
crossbeam = "0.8"
tracing = { version= "0.1.26" }
bincode = "*"
test-log = "*"
env_logger = "*"
smallvec = "*"
structopt = "0.3.26"
codegen = "0.2.0"
[profile.release]
debug = true
[profile.bench]
debug = true