aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-08-27 22:29:06 -0700
committerFuwn <[email protected]>2022-08-27 22:29:06 -0700
commit83fc1aab2e15f60b6e7b85e7831d6591b4d1ab36 (patch)
tree43ddb3f37117e61b1caa619b72c96eafa21cf63b /Makefile.toml
parentfix(main.rs): enable feature for actions (diff)
downloadlocus-83fc1aab2e15f60b6e7b85e7831d6591b4d1ab36.tar.xz
locus-83fc1aab2e15f60b6e7b85e7831d6591b4d1ab36.zip
feat: bump toolchain to nightly-2022-08-23
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml16
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"]