forked from move-language/move
-
Notifications
You must be signed in to change notification settings - Fork 6
/
x.toml
202 lines (169 loc) · 5.69 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
[grcov.installer]
version = "0.8.2"
[system-tests]
[cargo.sccache]
bucket = "ci-artifacts.diem.com"
prefix = "sccache/diem/"
public = true
region = "us-west-2"
endpoint = "https://s3-us-west-2.amazonaws.com"
required-cargo-home = "/opt/cargo/"
required-git-home = "/opt/git/diem"
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.16-alpha.0"
git = "https://github.com/diem/sccache.git"
git-rev = "ef50d87a58260c30767520045e242ccdbdb965af"
features = [ "s3" ]
[fix]
[clippy]
allowed = [
# Deriving Arbitrary often causes this warning to show up.
"clippy::unit_arg",
"clippy::mixed_read_write_in_expression",
"clippy::new-without-default",
"clippy::rc_buffer",
"clippy::upper_case_acronyms",
"clippy::len-without-is-empty",
"clippy::from-iter-instead-of-collect",
"clippy::while-let-on-iterator",
"clippy::bool-assert-comparison",
"clippy::needless-collect",
"clippy::enum-variant-names",
"clippy::self-named-constructors",
]
warn = [
"clippy::wildcard_dependencies",
]
# This follows the same syntax as CargoOptionsSummary in guppy.
[summaries.default]
resolver = "2"
include-dev = false
initials-platform = "standard"
[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.full]
version = "v2"
include-dev = true
initials-platform = "standard"
# Don't set target or host platforms, or omitted packages, for the full set.
[workspace]
# Regex for allowed characters in paths. Regex must have ^ and $ anchors.
allowed-paths = "^([a-zA-Z0-9._\\-/@:]|-)+$"
whitespace-exceptions = [
".github/actions/*/dist/*",
"**/*.exp",
"**/*.errmap",
"**/*.abi",
]
[workspace.enforced-attributes]
authors = ["Diem Association <[email protected]>"]
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.direct-dep-dups]
allow = [
]
[workspace.overlay]
features = ["failpoints", "fuzzing"]
# This is a list of test-only members. These are workspace members that do not form part of the main
# Diem 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 Move 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 = [
# Please keep this list in alphabetical order!
"bytecode-interpreter-testsuite",
"bytecode-verifier-libfuzzer",
"bytecode-verifier-tests",
"bytecode-verifier-transactional-tests",
"df-cli",
"diem-crypto",
"diem-crypto-derive",
"diem-framework-natives",
"invalid-mutations",
"language-benchmarks",
"module-generation",
# TODO: remove this here once the crate is used in code. There is currently not other way to do this.
# The code style direction to mark this crate as pulished doesn't work, because nothing in the repo
# is ready for publication and dependencies aren't marked like this.
"move-async-vm",
"move-compiler-transactional-tests",
"move-explain",
"move-ir-compiler-transactional-tests",
"move-vm-paranoid-tests",
"move-prover-test-utils",
"move-transactional-test-runner",
"move-vm-integration-tests",
"move-vm-transactional-tests",
"evm-exec-utils",
"serializer-tests",
"test-generation",
"x",
"x-core",
"x-lint",
# Please keep this list in alphabetical order!
]
# Interesting subsets of the workspace, These are used for generating and
# checking dependency summaries.
[subsets.release]
root-members = [
]
# ---
# Determinator rules
# ---
# CI-related files. TODO: maybe have separate rules for local and CI?
[[determinator.path-rule]]
globs = [".github/**/*", "codecov.yml"]
mark-changed = "all"
# Core devtools files.
[[determinator.path-rule]]
globs = [".config/nextest.toml", "scripts/dev_setup.sh", "x.toml"]
mark-changed = "all"
[[determinator.path-rule]]
# Ignore non-code dirs
globs = ["assets/**/*", "docker/**/*", "language/documentation/**/*", "scripts/**/*"]
mark-changed = []
[[determinator.path-rule]]
# Ignore *.md documentation
globs = ["*.md"]
mark-changed = []
[[determinator.path-rule]]
# Ignore files in the examples for EVM (for now)
globs = ["language/evm/examples/**/*", "language/evm/stdlib/**/*", "language/evm/hardhat-examples/**/*", "language/evm/hardhat-move/**/*"]
mark-changed = []
[[determinator.path-rule]]
# Ignore files in the language/evm/examples tree (for now)
globs = ["language/extensions/async/examples/**/*"]
mark-changed = []
[[determinator.path-rule]]
# Ignore files in the language/evm/examples tree (for now)
globs = ["language/extensions/async/move-async-lib/**/*"]
mark-changed = []
[[determinator.path-rule]]
# On changes to files related to VS Code, build the move-analyzer package.
globs = [".vscode/**/*", "language/move-analyzer/editors/code/**/*.json"]
mark-changed = ["move-analyzer"]
[[determinator.package-rule]]
# x controls the build process, so if it changes, build everything.
on-affected = ["x"]
mark-changed = "all"