-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
83 lines (80 loc) · 2.21 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[workspace]
members = [
"admission_control/admission_control_service",
"admission_control/admission_control_proto",
"benchmark",
"client",
"client/libra_wallet",
"common/bounded-executor",
"common/canonical_serialization",
"common/crash_handler",
"common/debug_interface",
"common/executable_helpers",
"common/failure_ext",
"common/futures-semaphore",
"common/grpcio-client",
"common/logger",
"common/metrics",
"common/proptest_helpers",
"common/proto_conv",
"config",
"config/config_builder",
"config/generate_keypair",
"consensus",
"crypto/crypto",
"crypto/crypto_derive",
"crypto/secret_service",
"execution/execution_client",
"execution/execution_proto",
"execution/execution_service",
"execution/execution_tests",
"execution/executor",
"language/benchmarks",
"language/bytecode_verifier",
"language/bytecode_verifier/invalid_mutations",
"language/bytecode_verifier/bytecode_verifier_tests",
"language/functional_tests",
"language/transaction_builder",
"language/compiler",
"language/compiler/ir_to_bytecode",
"language/compiler/ir_to_bytecode/syntax",
"language/e2e_tests",
"language/tools/cost_synthesis",
"language/tools/test_generation",
"language/tools/repl",
"language/stackless_bytecode/bytecode_to_boogie",
"language/stackless_bytecode/generator",
"language/vm",
"language/vm/serializer_tests",
"language/vm/vm_runtime",
"language/vm/vm_runtime/vm_cache_map",
"language/vm/vm_runtime/vm_runtime_types",
"language/vm/vm_genesis",
"libra_node",
"libra_swarm",
"network",
"network/memsocket",
"network/netcore",
"network/noise",
"network/socket_bench_server",
"mempool",
"state_synchronizer",
"storage/accumulator",
"storage/libradb",
"storage/jellyfish_merkle",
"storage/schemadb",
"storage/scratchpad",
"storage/storage_client",
"storage/state_view",
"storage/storage_proto",
"storage/storage_service",
"testsuite",
"testsuite/cluster_test",
"testsuite/libra_fuzzer",
"types",
"vm_validator",
]
[profile.release]
debug = true
[profile.bench]
debug = true