TL;DR: cargo build --release fails in workspace root but find . -name dist-spec.toml | sed 's|/[^/]*$||' | cut -c 3- | xargs -I {} cargo build --release --bin {} works.
Hi there,
I have a workspace with about 20 crates in. Sometimes cargo build --release fails to build (with no particularly helpful error message :-() when run from the workspace root, but building each individual crate in the workspace always works.
The entire build takes about 15 minutes, but I can't see anything about timeouts which might be being exceeded.
How do I go about debugging this, and has anyone run into any suggestions before?