An open API service indexing awesome lists of open source software.

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)

Awesome Lists containing this project

README

          




Cargo Dev




Alias shell commands (think NPM scripts for cargo)




Last GitHub Commit


Last GitHub Commit


Last GitHub Commit


---

## 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.