blob: d004dbc2c82491126d0a49837b68fd093d6a7f63 (
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
27
28
29
30
31
32
33
34
35
36
37
|
# ------------
# | Wrappers |
# ------------
[tasks.fmt]
command = "cargo"
args = ["fmt"]
[tasks.check]
command = "cargo"
args = ["check"]
[tasks.clippy]
command = "cargo"
args = ["clippy"]
[tasks.test]
command = "cargo"
args = ["test"]
[tasks.bench]
command = "cargo"
args = ["bench"]
# -------------
# | Executors |
# -------------
[tasks.checkf]
workspace = false
dependencies = ["fmt", "check"]
[tasks.checkfc]
workspace = false
dependencies = ["fmt", "check", "clippy"]
[tasks.checkall]
workspace = false
dependencies = ["fmt", "check", "clippy", "test", "bench"]
|