https://github.com/mnthomson/cargo-dev
Alias shell commands (think NPM scripts for cargo)
https://github.com/mnthomson/cargo-dev
cargo cargo-subcommand cli crate developer-tools rust
Last synced: 3 months ago
JSON representation
Alias shell commands (think NPM scripts for cargo)
- Host: GitHub
- URL: https://github.com/mnthomson/cargo-dev
- Owner: MNThomson
- License: mit
- Created: 2023-03-27T07:29:01.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-28T03:15:59.000Z (almost 3 years ago)
- Last Synced: 2025-10-05T01:10:44.685Z (3 months ago)
- Topics: cargo, cargo-subcommand, cli, crate, developer-tools, rust
- Language: Rust
- Homepage:
- Size: 10.7 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Cargo Dev
Alias shell commands (think NPM scripts for cargo)
---
## Install
```bash
cargo install cargo-dev
```
## Usage
Add a `[dev]` table (section) to your `Cargo.toml` with aliases to shell commands
```toml
[dev]
sayhi = "echo Hello World"
```
Running `cargo dev sayhi`:
```bash
$ cargo dev sayhi
> sayhi: echo Hello World
Hello World
```
## Alpha Notice
`cargo-dev` is currently in early Alpha. Branch `master` is not guaranteed to be stable and breaking changes may be introduced without notice.