blob: b4967e3ceaf5cac2d5f022f3b8c649e7e074f156 (
plain) (
blame)
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
|
# ------------
# | Wrappers |
# ------------
[tasks.fmt]
args = ["fmt"]
command = "cargo"
toolchain = "nightly"
[tasks.check]
args = ["check"]
command = "cargo"
[tasks.clippy]
args = ["clippy"]
command = "cargo"
# -------------
# | Executors |
# -------------
[tasks.checkf]
dependencies = ["fmt", "check"]
workspace = false
[tasks.checkfc]
dependencies = ["fmt", "check", "clippy"]
workspace = false
|