Crates.io Crates.io

cargo-task

Ultra-Lightweight Zero-Dependency Rust Cargo Task Runner.

Quick Start - Installation

cargo install cargo-task

Initialize your rust repository with a .cargo-task directory:

cargo task ct-init

Change to that directory:

cd .cargo-task

Create a new task project:

cargo new --bin my-task ```

// The content of this module is added by the cargo task builder. // It contains helpers like the ct* logging macros. mod cargotask_util;

fn main() { ct_info!("Hello World!"); } ```

cd ..

Run 'cargo task':

cargo task ```

Quick Start - Command Line API

AtAt (@@) cargo-task metadata