| Crates.io | cargo-q |
| lib.rs | cargo-q |
| version | 0.2.0 |
| created_at | 2025-01-18 05:36:16.745849+00 |
| updated_at | 2025-03-08 11:37:37.641047+00 |
| description | A Cargo subcommand for running multiple Cargo commands sequentially or in parallel. |
| homepage | |
| repository | https://github.com/guuzaa/cargo-q |
| max_upload_size | |
| id | 1521380 |
| size | 34,877 |
A Cargo subcommand for running multiple Cargo commands sequentially or in parallel.
cargo install cargo-q
cargo q check
# Run commands sequentially
cargo q check test # Runs check, then test
# For commands with arguments
cargo q "test --no-run" # Run test with --no-run flag
cargo q "test --features feature1" # Use quotes for complex arguments
# Run commands in parallel
cargo q -p check test # Run both commands in parallel
cargo q --parallel check test # Same as above
cargo q -v check test # Show detailed output
cargo q --verbose check test # Same as above
Licensed under Apache-2.0 license (LICENSE or http://opensource.org/licenses/Apache-2.0)