Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/maikklein/cargo-workspace


https://github.com/maikklein/cargo-workspace

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# cargo-workspace

## Installation:

`cargo install cargo-workspace`

## Usage:

`cargo workspace COMMANDS`

## Examples:

```
// Executes check in all crates inside the workspace.
cargo workspace check

cargo workspace check --color=always

// Formates all crates inside the workspace.
cargo workspace fmt

// Builds all crates inside the workspace if a file as been changed.
cargo watch -x "workspace build"

```