rmake 0.1.0

Simple make by Rust
Documentation

rmake

  • Simple task runner.

Getting started

git clone https://github.com/mass10/rmake.git
cargo install --path rmake
  • Not in crates.io now.

rmake.toml

[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%"]
]