-
Notifications
You must be signed in to change notification settings - Fork 0
/
x.toml
158 lines (137 loc) · 4.35 KB
/
x.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[grcov.installer]
version = "0.5.15"
[system-tests]
smoke-test = { path = "smoke-test" }
[cargo]
toolchain = "nightly-2020-10-09"
flags = "-Zfeatures=all"
[cargo.sccache]
bucket = "ci-artifacts.libra.org"
prefix = "sccache/libra/"
public = true
region = "us-west-2"
endpoint = "https://s3-us-west-2.amazonaws.com"
required-cargo-home = "/opt/cargo"
required-git-home = "/opt/git/libra"
envs = [
#To debug sccache uncomment the two lines below.
#["SCCACHE_ERROR_LOG","/tmp/sccache_log"],
#["SCCACHE_LOG", "sccache::compiler::compiler=trace,rusoto_core::request=trace"],
]
[cargo.sccache.installer]
version = "0.2.14-alpha.0"
git = "https://github.com/rexhoffman/sccache.git"
git-rev = "19fef99c15765ea73460fd9ecb209c35313eac41"
features = [ "s3" ]
[fix]
[clippy]
allowed = [
# Deriving Arbitrary often causes this warning to show up.
"clippy::unit_arg",
# Known to have false positive at the moment,
"clippy::mutable_key_type",
"clippy::eval-order-dependence",
"clippy::new-without-default",
]
warn = [
"clippy::wildcard_dependencies",
]
# This follows the same syntax as CargoOptionsSummary in guppy.
[summaries.default]
version = "v2"
include-dev = false
proc-macros-on-target = false
[summaries.default.target-platform]
triple = "x86_64-unknown-linux-gnu"
target-features = "all"
[summaries.default.host-platform]
triple = "x86_64-unknown-linux-gnu"
target-features = "all"
[[summaries.default.omitted-packages]]
name = "libra-workspace-hack"
version = "0.1.0"
workspace-path = "common/workspace-hack"
[summaries.full]
version = "v2"
include-dev = true
proc-macros-on-target = false
# Don't set target or host platforms, or omitted packages, for the full set.
[workspace.enforced-attributes]
authors = ["Libra Association <opensource@libra.org>"]
license = "Apache-2.0"
[workspace.banned-deps.direct]
lazy_static = "use once_cell::sync::Lazy instead"
[workspace.banned-deps.default-build]
criterion = "criterion is only for benchmarks"
proptest = "proptest is only for testing and fuzzing"
[workspace.overlay]
features = ["fuzzing"]
# This is a list of test-only members. These are workspace members that do not form part of the main
# Libra production codebase, and are only used to verify correctness and/or performance.
#
# *** IMPORTANT ***
#
# Published developer tools (e.g. Move compiler) ARE part of the production Libra codebase.
# They should be listed in the root Cargo.toml's default-members, not here!
#
# Before adding a new crate to this list, ensure that it is *actually* test-only. If not, add it
# (or a crate that depends on it) to the root Cargo.toml's default-members list!
#
# For more, see the "Conditional compilation for tests" section in documentation/coding_guidelines.md.
[workspace.test-only]
members = [
"common/channel/many-keys-stress-test",
"common/libradoc",
"common/proptest-helpers",
"common/retrier",
"devtools/x",
"devtools/x-core",
"devtools/x-lint",
"execution/executor-benchmark",
"execution/executor-test-helpers",
"language/benchmarks",
"language/bytecode-verifier/bytecode-verifier-tests",
"language/bytecode-verifier/invalid-mutations",
"language/e2e-testsuite",
"language/testing-infra/e2e-tests",
"language/testing-infra/functional-tests",
"language/testing-infra/test-generation",
"language/testing-infra/module-generation",
"language/ir-testsuite",
"language/move-lang/functional-tests",
"language/move-prover/test-utils",
"language/move-vm/integration-tests",
"language/vm/serializer-tests",
"network/memsocket",
"network/socket-bench-server",
"testsuite/cli",
"testsuite/cli/libra-wallet",
"testsuite/cluster-test",
"testsuite/generate-format",
"testsuite/libra-fuzzer",
"testsuite/libra-fuzzer/fuzz",
"testsuite/libra-swarm",
"testsuite/smoke-test",
]
# Interesting subsets of the workspace, These are used for generating and
# checking dependency summaries.
[workspace.subsets.lsr]
# The Libra safety rules TCB.
members = [
"consensus/safety-rules",
]
[workspace.subsets.lec]
# The Libra execution correctness TCB.
members = [
"execution/execution-correctness",
]
[workspace.subsets.release]
# The Libra release binaries
members = [
"config/management/genesis",
"consensus/safety-rules",
"execution/db-bootstrapper",
"libra-node",
"secure/key-manager",
"storage/backup/backup-cli",
]