cargo-run 0.6.0

A powerful, fast, and developer-friendly CLI tool for managing project scripts in Rust. Workspace-aware, cargo-script ready, with hooks, parallel execution, watch mode, and CI/CD templates.
Documentation
# Advanced features example


Showcases hooks, parameter substitution, and watch mode.

```bash
cd examples/advanced

# Parameterised deploy with hooks

cargo script deploy                  # uses default env=staging
cargo script deploy production       # positional
cargo script deploy env=qa           # named

# Watch a script — re-runs on file changes

cargo script test-watch --watch
cargo script test-watch --watch --watch-path src --watch-exclude target
```

See [`docs/ADVANCED_FEATURES.md`](../../docs/ADVANCED_FEATURES.md) for the
full reference.