forked from diem/diem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (64 loc) · 1.64 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
66
67
[workspace]
members = [
"admission_control/admission_control_service",
"admission_control/admission_control_proto",
"client",
"client/libra_wallet",
"common/canonical_serialization",
"common/crash_handler",
"common/debug_interface",
"common/executable_helpers",
"common/failure_ext",
"common/grpcio-client",
"common/jemalloc",
"common/logger",
"common/metrics",
"common/proptest_helpers",
"common/proto_conv",
"config",
"config/config_builder",
"config/generate_keypair",
"consensus",
"crypto/legacy_crypto",
"crypto/nextgen_crypto",
"crypto/secret_service",
"execution/execution_client",
"execution/execution_proto",
"execution/execution_service",
"execution/executor",
"language/bytecode_verifier",
"language/bytecode_verifier/invalid_mutations",
"language/functional_tests",
"language/compiler",
"language/stdlib/natives",
"language/vm",
"language/vm/vm_runtime",
"language/vm/cost_synthesis",
"language/vm/vm_runtime/vm_cache_map",
"language/vm/vm_genesis",
"language/vm/vm_runtime/vm_runtime_tests",
"libra_node",
"libra_swarm",
"network",
"network/memsocket",
"network/netcore",
"network/noise",
"mempool",
"storage/accumulator",
"storage/libradb",
"storage/schemadb",
"storage/scratchpad",
"storage/sparse_merkle",
"storage/storage_client",
"storage/state_view",
"storage/storage_proto",
"storage/storage_service",
"testsuite",
"testsuite/libra_fuzzer",
"types",
"vm_validator",
]
[profile.release]
debug = true
[profile.bench]
debug = true