-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
101 lines (97 loc) · 2.65 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[workspace]
members = [
"admission_control/admission-control-service",
"admission_control/admission-control-proto",
"client",
"client/libra_wallet",
"common/bounded-executor",
"common/channel",
"common/crash-handler",
"common/datatest-stable",
"common/debug-interface",
"common/executable-helpers",
"common/futures-semaphore",
"common/grpc-helpers",
"common/lcs",
"common/logger",
"common/metrics",
"common/nibble",
"common/proptest-helpers",
"common/prost-ext",
"common/tools",
"common/util",
"config",
"config/config-builder",
"config/generate-keypair",
"consensus",
"consensus/consensus-types",
"consensus/safety-rules",
"crypto/crypto",
"crypto/crypto-derive",
"executor",
"language/move-lang",
"language/benchmarks",
"language/borrow-graph",
"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/utils",
"language/tools/test-generation",
"language/compiler/bytecode-source-map",
"language/move-prover/bytecode-to-boogie",
"language/move-prover/stackless-bytecode-generator",
"language/stdlib",
"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",
"mempool/mempool-shared-proto",
"state-synchronizer",
"storage/accumulator",
"storage/backup-restore",
"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",
"x",
]
# NOTE: These members should never include crates that require fuzzing
# features or test features. These are the crates we want built with no extra
# test-only code included.
default-members = [
"client",
"language/compiler",
"language/vm/vm-genesis",
"libra-node",
"storage/storage-service",
]
[profile.release]
debug = true
[profile.bench]
debug = true