From 242b0b9591fa4fd5f8b4a45ec4c179f451c62c14 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 15 May 2022 23:44:53 -0700 Subject: feat: initial development release --- Makefile.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Makefile.toml (limited to 'Makefile.toml') diff --git a/Makefile.toml b/Makefile.toml new file mode 100644 index 0000000..4c18a79 --- /dev/null +++ b/Makefile.toml @@ -0,0 +1,31 @@ +# ------------ +# | Wrappers | +# ------------ +[tasks.fmt] +toolchain = "nightly" +command = "cargo" +args = ["fmt"] +private = true + +[tasks.check] +command = "cargo" +args = ["check"] +private = true + +[tasks.clippy] +command = "cargo" +args = ["clippy"] +private = true + +# ------------- +# | Executors | +# ------------- +[tasks.checkf] +dependencies = ["fmt", "check"] + +[tasks.checkfc] +dependencies = ["fmt", "check", "clippy"] + +[tasks.run] +command = "cargo" +args = ["run", "--", "${@}"] -- cgit v1.2.3