Is there a way to make rustc
output less verbose?
Sometimes I want to run cargo
in the terminal and just see all places errors happened in?
Specifically, I want to disable note
and help
clauses for compiler errors when calling cargo build
.
I'm not sure if there's a way to do this with cargo itself, but I use bacon, which supports it. Maybe that'll suit your workflow, maybe not.
1 Like
Reminds me of ghcid.
I will check bacon
out, thanks!
cargo check --message-format short
?
6 Likes