From ae81292908fd049365b9ff582727e0227af8563e Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 31 Jul 2022 17:34:09 +0000 Subject: feat: drop rust nightly requirement!!! --- Makefile.toml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'Makefile.toml') 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"] -- cgit v1.2.3