-
Notifications
You must be signed in to change notification settings - Fork 22
Description
I have a feature foo
which required also feature bar
to be enabled.
It looks like this can not be tested with cargo-all-feautures currently.
At the moment you can skip all combination of feature
skip_feature_sets = [
["foo", "bar"],
]
But I can not do something like this:
skip_feature_sets = [
["foo", "!bar"],
]
Alternative a new deps
field can be added:
[[deps]]
feature = "foo"
needs = ["bar"]
Metadata
Metadata
Assignees
Labels
No labels