cargo-q-0.1.5 is not a library.
cargo-q
A Cargo subcommand that allows running multiple Cargo commands in a time.
- ✅ Add sequential execution
- ✅ Add ; as command separator for independent commands
- ✅ Add & as command separator for dependent commands
- ✅ Add parallel execution between independent commands
- ❌ Add > as command separator for dependent commands
- ❌ Support mixed separators
Installation
Features
- Run multiple Cargo commands sequentially
- Use different separators for command execution:
- Space: Run commands sequentially (independent execution)
;: Run independent commands sequentially&: Run commands with dependencies (each command depends on previous command's success)
- Support parallel execution for independent commands
- Verbose mode for detailed output
Usage
Run a Single Command
Run Multiple Commands
Sequential Execution (Space Separator)
# Run commands sequentially and independently
Independent Commands (; Separator)
# Run commands sequentially and independently
Dependent Commands (& Separator)
# Run commands with explicit dependencies
Parallel Execution
# Run independent commands in parallel
Verbose Output
License
Licensed under Apache-2.0 license (LICENSE or http://opensource.org/licenses/Apache-2.0)