request: some sort of argument to add "optional" deps as features #28
Labels
A-features
Area: features (--feature-powerset, --each-feature, etc.)
C-enhancement
Category: A new feature or an improvement for an existing one
Any time an optional dependency is specified, that internally becomes visible as a feature flag, eg:
Can of course, be enabled with
--features foo
And rust code can check for it with
#[cfg(feature = "foo")]
And code can activate that path via
Subsequently, it would be nice to have, at least as an option, these hidden features in
--each-feature
and--feature-powerset
to test for this case.The text was updated successfully, but these errors were encountered: