Taiki Endo
Taiki Endo
> These two options would be fairly simple to achieve if the project used clap, but cargo-hack instead uses lexopt for options generation as well as a manually coded help...
I would accept a PR to implement this.
cc @kornelski who added this option in https://github.com/taiki-e/cargo-hack/pull/193
Perhaps just need to add the check like the following? https://github.com/taiki-e/cargo-hack/blob/8fa7f67166823d74e41099ed3be320b723771c83/src/main.rs#L203-L207
> In Cargo, commands like `cargo check --all --features=foo` require that _at least one crate_ has the specified feature. To be clear: This is the behavior of v2 resolver. (The...
@xStrom > Having `--ignore-unknown-features` would still have value. I copy-paste the same CI script around for over 20 repos. The `no_std` step uses `--ignore-unknown-features --features libm`. Most `no_std` packages have...
Thanks for the PR! I'm positive on adding this feature. However: - CI is failing, so please fix that. - It should be able to be fixed by running `cargo...
As for the addition of other options, it would be easier to review if they were separated into separate PRs.
@elichai As discussed in https://github.com/vi/cargo-hack/pull/1, what is needed here is for someone to take over https://github.com/taiki-e/cargo-hack/pull/255 and complete it.
cc @ryoqun