Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-15T07:48:21.000Z (over 7 years ago)
- Last Synced: 2024-12-15T23:45:27.368Z (about 2 months ago)
- Language: Rust
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- 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"```