Rust Application Build Workflow

About

Getting started

bash cargo install rmake

How to run the first task

bash rmake

How to run the specified task

bash rmake {name of task}

Show usage

bash rmake --help

rmake.toml is as

```toml [env] MYENV01 = "Hello,"

[variables] MYVAR02 = "World!"

[[tasks]] description = "anything" name = "world" dependson = ["hello"] command = [ "ECHO {{MYVAR_02}}", ]

[[tasks]] description = "anything" name = "hello" dependson = [] command = [ "!MKDIR .tmp", # SAFE with "!" "!DEL /S /Q .tmp\*", # SAFE with "!" "ECHO %MYENV_01%", ] ```

Future Plans