diff options
Diffstat (limited to 'Makefile.toml')
| -rw-r--r-- | Makefile.toml | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/Makefile.toml b/Makefile.toml index cdca5d7..e7313c0 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -1,24 +1,16 @@ -# ------------ -# | Wrappers | -# ------------ [tasks.fmt] -command = "cargo" args = ["fmt"] -private = true +command = "cargo" +toolchain = "nightly" [tasks.check] +args = ["check", "--all-features"] command = "cargo" -args = ["check"] -private = true [tasks.clippy] +args = ["clippy", "--all-features"] command = "cargo" -args = ["clippy"] -private = true -# ------------- -# | Executors | -# ------------- [tasks.checkf] dependencies = ["fmt", "check"] |