Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support hyphen values for --build-jobs (#1874)
cargo --jobs supports negative values: rust-lang/cargo#9217 currently this fails: ``` cargo nextest run --build-jobs -1 error: unexpected argument '-1' found tip: to pass '-1' as a value, use '-- -1' ``` because clap doesn't support this by default and requires `allow_hyphen_values = true` clap-rs/clap#1245
- Loading branch information