@MarcoIeni ("Marco Ieni 🦀") wrote:
The latest clippy forces you to write inlined variables in format strings.
I.e. `format!("{var}")` instead of `format!("{}", var)`.Fixing this issue manually can take a lot of time.
However, clippy can fix this error automatically:
run `$ cargo clippy --fix` 😎