blob: 5ec7c19259c2a327d503b4be105da3a50b472b30 (
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
|
[tasks.fmt]
args = ["fmt"]
command = "cargo"
toolchain = "nightly"
[tasks.check]
args = ["check", "--all-features"]
command = "cargo"
[tasks.clippy]
args = ["clippy"]
command = "cargo"
[tasks.checkf]
dependencies = ["fmt", "check"]
[tasks.checkfc]
dependencies = ["fmt", "check", "clippy"]
[tasks.run]
args = ["run", "${@}"]
command = "cargo"
dependencies = ["checkfc"]
|