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
So when using a Cargo.toml that specifies member crates using wildcards (i.e. ./crates/lib/*), Vorpal tries to use that value exactly to look up packages, instead of resolving the wildcard as a glob like Cargo does.
Minimal Cargo.toml to reproduce:
[workspace]
members = [
"./crates/*"
]
resolver = "2"
Then create 2 packages in crates/ and try to build one of them under Vorpal.