rmake 0.1.5

Simple make by Rust
# About


* Simple task runner like `make`.

# 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


```
[env]
MY_ENV_01 = "administrator@example.com"
MY_ENV_02 = "2147483647"
MY_ENV_03 = "true"

[[tasks]]
description = "Hello, rmake!"
name = "default task"
depends_on = []
command = [
	["echo", "%MY_ENV_02%"]
]
```