diff options
Diffstat (limited to 'Makefile.toml')
| -rw-r--r-- | Makefile.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml new file mode 100644 index 0000000..b4967e3 --- /dev/null +++ b/Makefile.toml @@ -0,0 +1,26 @@ +# ------------ +# | Wrappers | +# ------------ +[tasks.fmt] +args = ["fmt"] +command = "cargo" +toolchain = "nightly" + +[tasks.check] +args = ["check"] +command = "cargo" + +[tasks.clippy] +args = ["clippy"] +command = "cargo" + +# ------------- +# | Executors | +# ------------- +[tasks.checkf] +dependencies = ["fmt", "check"] +workspace = false + +[tasks.checkfc] +dependencies = ["fmt", "check", "clippy"] +workspace = false |