cargo-make 0.37.24

Rust task runner and build tool.
Documentation
1
2
3
4
5
6
7
8
9
10

[tasks.public]
description = "This is a public task that can be invoked via cli"
dependencies = ["private"]

[tasks.private]
description = "This is a private task that can only be invoked by other tasks"
private = true
command = "echo"
args = ["private..."]