Show which roots are being scanned in progress messages

See: #12613
This commit is contained in:
Rebecca Turner 2023-09-19 12:44:30 -07:00
parent 51ac6de6f3
commit 1ceb2ea414
No known key found for this signature in database
4 changed files with 54 additions and 7 deletions

View file

@ -317,7 +317,7 @@ fn load_crate_graph(
// wait until Vfs has loaded all roots
for task in receiver {
match task {
vfs::loader::Message::Progress { n_done, n_total, config_version: _ } => {
vfs::loader::Message::Progress { n_done, n_total, .. } => {
if n_done == n_total {
break;
}