You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given a package that has the feature a but not the feature b, I get:
$ cargo run --features a b
Finished dev [unoptimized + debuginfo] target(s) in 0.01s
Running `target/debug/wut b`
Hello, world!
$ cargo +beta run --features a b
error: Package `wut v0.1.0 (/home/alex/code/wut)` does not have these features: `b`
Fix interpretation of `--features a b` on the CLI
Fixes an accidental regression from #7084 where `--features a b` was
erroneously mistinterpreted as `--features "a b"`.
Closes#7418
Given a package that has the feature
a
but not the featureb
, I get:I suspect this is an accidental regression from #7084
The text was updated successfully, but these errors were encountered: