aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
blob: d1528039ec4a1a4b9434d8e1b964f048f41f9aba (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
[tasks.fmt]
args = ["fmt"]
command = "cargo"
toolchain = "nightly"

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

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

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

[tasks.checkf]
dependencies = ["fmt", "check"]

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

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