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
cargo new --lib foo
cd foo
echo '[workspace]' >> Cargo.toml
echo 'members = ["bar"]' >> Cargo.toml
cargo new --lib bar
cargo metadata --features dummy
This generates the following error on cargo 1.27.0-nightly (0a1add2 2018-04-20):
error: cannot specify features for more than one package
This completely breaks --features usage in cargo-web on nightly (koute/cargo-web#95).
It works as expected on stable. This is possibly related to #5364.
The text was updated successfully, but these errors were encountered:
koute
changed the title
--feature doesn't work for cargo metadata in projects with virtual manifests--feature doesn't work for cargo metadata in projects with workspaces
Apr 29, 2018
koute
changed the title
--feature doesn't work for cargo metadata in projects with workspaces--features doesn't work for cargo metadata in projects with workspaces
Apr 29, 2018
Steps to reproduce:
This generates the following error on cargo 1.27.0-nightly (0a1add2 2018-04-20):
This completely breaks
--features
usage incargo-web
on nightly (koute/cargo-web#95).It works as expected on stable. This is possibly related to #5364.
The text was updated successfully, but these errors were encountered: