diff --git a/Makefile.toml b/Makefile.toml index b96c624bb..1a696a6b6 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -121,6 +121,12 @@ category = "[project]" command = "cargo" args = [ "make", "--list-all-steps" ] +[tasks.install] +description = "Install project binary (to \"$HOME/.cargo/bin\")" +category = "[project]" +command = "cargo" +args = ["install", "--path", "."] + [tasks.lint] description = "Lint report" category = "[project]" @@ -152,6 +158,12 @@ dependencies = [ "core::post-test", ] +[tasks.uninstall] +description = "Remove project binary (from \"$HOME/.cargo/bin\")" +category = "[project]" +command = "cargo" +args = ["uninstall"] + [tasks.util] alias = "utils"