Cargo prints steps out of order #3746
Labels
A-console-output
Area: Terminal output, colors, progress bar, etc.
C-bug
Category: bug
Command-install
Consider this output for
cargo install cargo-fuzz
:Now, the first two steps say:
So, it is installing the thing even before it is compiled; that’s obviously not true, so assume that its printed before all the steps that are necessary to actually install it (such as downloading dependencies and compiling the binary) are started.
However at the same time, compiling step is printed after the downloading step – which sort of is an inverse of above observation.
I feel like I’ve observed somewhat related inconsistencies while using rustbuild wherein printout
Compiling crate
does not necessarily reflect the fact of build for this crate being started.The text was updated successfully, but these errors were encountered: