diff options
| author | Fuwn <[email protected]> | 2022-05-12 07:42:03 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-05-12 07:42:03 +0000 |
| commit | bc5d2312763b4399b246f1e6b9dbfbfa5cd76686 (patch) | |
| tree | 85ef66154e9a8cad7fbbdd61282d35052c1ea87d /Makefile.toml | |
| download | germ-bc5d2312763b4399b246f1e6b9dbfbfa5cd76686.tar.xz germ-bc5d2312763b4399b246f1e6b9dbfbfa5cd76686.zip | |
feat(0.1.0): initial release0.1.0
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 |