aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml18
1 files changed, 6 insertions, 12 deletions
diff --git a/Makefile.toml b/Makefile.toml
index ef78a0e..525424a 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -1,24 +1,18 @@
-# ------------
-# | Wrappers |
-# ------------
[tasks.fmt]
-command = "cargo"
args = ["fmt"]
-private = true
+command = "cargo"
+toolchain = "nightly"
[tasks.check]
-command = "cargo"
args = ["check"]
-private = true
+command = "cargo"
+toolchain = "nightly"
[tasks.clippy]
-command = "cargo"
args = ["clippy"]
-private = true
+command = "cargo"
+toolchain = "nightly"
-# -------------
-# | Executors |
-# -------------
[tasks.checkf]
dependencies = ["fmt", "check"]