forked from matter-labs/zksync-era
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (58 loc) · 1.92 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
[workspace]
members = [
# Prover
# We don't include `prove` image here since it cannot be built with stable rust
# and we don't want to use nightly for the whole workspace
# "core/bin/prover",
# Server
"core/bin/zksync_core",
"core/bin/admin-tools",
"core/bin/system-constants-generator",
# Contract verifier
"core/bin/contract-verifier",
# Setup key generator and server: its commented as it cannot be built with stable rust.
# "core/bin/setup_key_generator_and_server",
# Verification key generator and server
"core/bin/verification_key_generator_and_server",
# Migration to fill events.tx_initiator_address table for old events
"core/bin/events_tx_initiator_address_migration",
"core/bin/set_correct_tx_format_for_priority_ops",
"core/bin/storage_logs_migration",
# Tool for removing blobs from database
"core/bin/blob_purger",
# circuit synthesizer: its commented as it cannot be built with stable rust.
# "core/bin/circuit_synthesizer",
# Libraries
"core/lib/basic_types",
"core/lib/config",
"core/lib/contracts",
"core/lib/crypto",
"core/lib/circuit_breaker",
"core/lib/dal",
"core/lib/db_test_macro",
"core/lib/eth_client",
"core/lib/eth_signer",
"core/lib/mempool",
"core/lib/merkle_tree",
"core/lib/object_store",
"core/lib/mini_merkle_tree",
"core/lib/prometheus_exporter",
"core/lib/queued_job_processor",
"core/lib/state",
"core/lib/storage",
"core/lib/types",
"core/lib/prover_utils",
"core/lib/utils",
"core/lib/vlog",
"core/lib/vm",
"core/lib/web3_decl",
# Test infrastructure
"core/tests/loadnext",
"core/tests/testkit",
# SDK section
"sdk/zksync-rs",
]
resolver = "2"
exclude = [ "core/bin/prover", "core/bin/setup_key_generator_and_server", "core/bin/circuit_synthesizer"]
[profile.test.package.zksync_merkle_tree]
opt-level = 3