https://github.com/maikklein/cargo-workspace
https://github.com/maikklein/cargo-workspace
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maikklein/cargo-workspace
- Owner: MaikKlein
- Created: 2017-06-15T07:38:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-15T07:48:21.000Z (over 8 years ago)
- Last Synced: 2025-08-12T21:54:00.301Z (2 months ago)
- Language: Rust
- Size: 2.93 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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 checkcargo 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"```