From bc5d2312763b4399b246f1e6b9dbfbfa5cd76686 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 12 May 2022 07:42:03 +0000 Subject: feat(0.1.0): initial release --- Makefile.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Makefile.toml (limited to 'Makefile.toml') 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 -- cgit v1.2.3