cargo-feature-combinations 0.7.0

run cargo commands for all feature combinations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# unwrap/expect/panic/indexing are denied in production (workspace lints) but are the
# idiomatic failure mode in tests, so these settings scope the denies to non-test code.
allow-unwrap-in-tests = true
allow-expect-in-tests = true
allow-panic-in-tests = true
allow-indexing-slicing-in-tests = true

# `..` appends to Clippy's built-in proper-noun list instead of replacing it.
doc-valid-idents = [".."]

disallowed-macros = [
  { path = "std::dbg", reason = "remove before commit" },
]