Use sort_unstable rather than sort when creating listings

This commit is contained in:
Nathan Fisher 2024-01-01 23:32:40 -05:00
parent 1036e90238
commit 98fcfd7f5e

View File

@ -45,7 +45,7 @@ impl<R: Read + Send + Seek> ListingStream<R> {
let listing = listing?;
list.push(listing);
}
list.sort();
list.sort_unstable();
Ok(list)
}
}