Run a cargo command on a matrix of feature sets.
If you've ever wondered if all of your crate's features actually work in
different combinations, then you may be interested in this crate. It looks
up all of your crates features and runs a cargo command for each combination
of features. It also takes transitively enabled features into account. So if
you have feat-a
that enabled feat-b
, it won't do two separate runs.
shell
cargo install cargo-feature-matrix
Any cargo command that accepts a --package
and --features
flag can be
run with this command.
shell
cargo feature-matrix [OPTIONS] <COMMAND> [-- <COMMAND_ARGS_AND_FLAGS>...]
Here is the output of cargo help feature-matrix
:
```text
USAGE:
cargo feature-matrix [OPTIONS]
ARGS:
<ARGS>...
Arguments to pass to the cargo command
OPTIONS:
--color
[default: auto]
[possible values: auto, always, never]
-d, --dry-run
Perform a dry run and print output as if all the jobs succeeded
-h, --help
Print help information
-m, --manifest-path <MANIFEST_PATH>
The path to the cargo manifest file to use
-p, --print-jobs
Print a list of all the cargo commands one per line.
This is intended to be consumed by external job runners.
-V, --version
Print version information
```
It also supports the following config options in the crate's Cargo.toml
file.
Every config setting is optional and the config can be omitted entirely if you
are happy with the defaults.
```toml [package.metadata.feature-matrix]
seed = ["a", "list", "of", "features"]
include = ["a", "list", "of", "features"]
#
deny = ["a", "list", "of", "features"]
skip = [["a", "list"], ["of", "feature"], ["lists"]]
include_hidden = true
conflict = [["a", "list"], ["of", "feature"], ["lists"]] ```
Licensed under the MIT license.
Any contribution submitted for inclusion in this work shall be licensed as above without any additional terms and conditions.