forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (52 loc) · 1.37 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
[workspace]
members = [
# Binaries
"core/bin/data_restore",
"core/bin/key_generator",
"core/bin/server",
"core/bin/prover",
"core/bin/parse_pub_data",
"core/bin/block_revert",
"core/bin/remove_proofs",
"core/bin/tree_cache_updater",
"core/bin/add_seq_no",
# Server micro-services
"core/bin/zksync_api",
"core/bin/zksync_core",
"core/bin/zksync_eth_sender",
"core/bin/zksync_event_listener",
"core/bin/zksync_witness_generator",
"core/bin/zksync_forced_exit_requests",
# Libraries
"core/lib/token_db_cache",
"core/lib/circuit",
"core/lib/mempool",
"core/lib/eth_client",
"core/lib/eth_signer",
"core/lib/gateway_watcher",
"core/lib/prometheus_exporter",
"core/lib/types",
"core/lib/state",
"core/lib/storage",
"core/lib/vlog",
"core/lib/crypto",
"core/lib/utils",
"core/lib/basic_types",
"core/lib/prover_utils",
"core/lib/config",
"core/lib/contracts",
"core/lib/api_client",
"core/lib/notifier",
"core/lib/api_types",
"core/lib/balancer",
# Test infrastructure
"core/tests/flamegraph_target",
"core/tests/test_account",
"core/tests/testkit",
"core/tests/loadnext",
# SDK section
"sdk/zksync-rs"
]
[profile.release.package.flamegraph_target]
# We need both performance and debug info to analyze.
debug = true