aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
blob: 8d72151aaad38b2929d75f2cb335d0445c3fe7dc (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
38
39
# ------------
# | Wrappers |
# ------------
[tasks.fmt]
args = ["fmt"]
command = "cargo"
toolchain = "nightly"
workspace = false

[tasks.check]
args = ["check", "--all-features"]
command = "cargo"
workspace = false

[tasks.clippy]
args = ["clippy", "--all-features"]
command = "cargo"
workspace = false

[tasks.test]
args = ["test", "--all-features"]
command = "cargo"
workspace = false

# -------------
# | Executors |
# -------------
[tasks.checkf]
dependencies = ["fmt", "check"]
workspace = false

[tasks.checkfc]
dependencies = ["fmt", "check", "clippy"]
workspace = false

[tasks.example]
args = ["run", "--example", "${@}", "--all-features"]
command = "cargo"
workspace = false