From 6699cbaa1c16b464bcfc1963143ebc945154b671 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 25 Jan 2022 23:04:22 -0800 Subject: feat: :star: --- Makefile.toml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Makefile.toml (limited to 'Makefile.toml') diff --git a/Makefile.toml b/Makefile.toml new file mode 100644 index 0000000..d004dbc --- /dev/null +++ b/Makefile.toml @@ -0,0 +1,37 @@ +# ------------ +# | Wrappers | +# ------------ +[tasks.fmt] +command = "cargo" +args = ["fmt"] + +[tasks.check] +command = "cargo" +args = ["check"] + +[tasks.clippy] +command = "cargo" +args = ["clippy"] + +[tasks.test] +command = "cargo" +args = ["test"] + +[tasks.bench] +command = "cargo" +args = ["bench"] + +# ------------- +# | Executors | +# ------------- +[tasks.checkf] +workspace = false +dependencies = ["fmt", "check"] + +[tasks.checkfc] +workspace = false +dependencies = ["fmt", "check", "clippy"] + +[tasks.checkall] +workspace = false +dependencies = ["fmt", "check", "clippy", "test", "bench"] -- cgit v1.2.3