Open
Description
We added glob support originally with #3911
However, if we add to Cargo.toml
[workspace]
members = ["**/*"]
Then we get an error like this.
error: failed to read `/Users/nipunn/src/client/rust/.cargo/Cargo.toml`
Here, the */ matches over aggressively to directories/files that aren't Crates. It would be nice to have a way to glob all crates. For now, we have to autogenerate the workspace Cargo.toml with a script.