From f793d07ebb2e4934f51e2a88ac338508736e3993 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 6 Sep 2022 23:48:13 -0700 Subject: feat: initial commit --- Makefile.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Makefile.toml (limited to 'Makefile.toml') diff --git a/Makefile.toml b/Makefile.toml new file mode 100644 index 0000000..4a7c3d8 --- /dev/null +++ b/Makefile.toml @@ -0,0 +1,28 @@ +[tasks.fmt] +args = ["fmt", "--manifest-path=src-tauri/Cargo.toml"] +command = "cargo" +toolchain = "nightly" +workspace = false + +[tasks.check] +args = ["check", "--all-features", "--manifest-path=src-tauri/Cargo.toml"] +command = "cargo" +workspace = false + +[tasks.clippy] +args = ["clippy", "--all-features", "--manifest-path=src-tauri/Cargo.toml"] +command = "cargo" +workspace = false + +[tasks.checkf] +dependencies = ["fmt", "check"] +workspace = false + +[tasks.checkfc] +dependencies = ["fmt", "check", "clippy"] +workspace = false + +[tasks.run] +args = ["run", "--manifest-path=src-tauri/Cargo.toml"] +command = "cargo" +workspace = false -- cgit v1.2.3