warning: variables can be used directly in the `format!` string
--> src/main.rs:54:21
|
54 | let _ = writeln!(io::stderr(), "{}", err);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `-W clippy::uninlined-format-args` implied by `-W clippy::pedantic`
help: change this to
|
54 - let _ = writeln!(io::stderr(), "{}", err);
54 + let _ = writeln!(io::stderr(), "{err}");
|
warning: variables can be used directly in the `format!` string
--> src/main.rs:70:21
|
70 | let _ = writeln!(io::stdout(), "{}", theme);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
70 - let _ = writeln!(io::stdout(), "{}", theme);
70 + let _ = writeln!(io::stdout(), "{theme}");
|
warning: variables can be used directly in the `format!` string
--> src/main.rs:77:21
|
77 | let _ = writeln!(
| _____________________^
78 | | io::stderr(),
79 | | "ERROR: cannot expand single item ({}) in ugly mode.",
80 | | item,
81 | | );
| |_____________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
warning: variables can be used directly in the `format!` string
--> src/main.rs:151:29
|
151 | let _ = writeln!(io::stderr(), "WARNING: no such item: {}", filter);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
151 - let _ = writeln!(io::stderr(), "WARNING: no such item: {}", filter);
151 + let _ = writeln!(io::stderr(), "WARNING: no such item: {filter}");
|
warning: variables can be used directly in the `format!` string
--> src/main.rs:230:17
|
230 | let _ = write!(io::stdout(), "{}", content);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
230 - let _ = write!(io::stdout(), "{}", content);
230 + let _ = write!(io::stdout(), "{content}");
|
warning: variables can be used directly in the `format!` string
--> src/main.rs:388:13
|
388 | let _ = writeln!(stream, " `{}`", line);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
388 - let _ = writeln!(stream, " `{}`", line);
388 + let _ = writeln!(stream, " `{line}`");
|
warning: variables can be used directly in the `format!` string
--> src/main.rs:400:21
|
400 | let _ = write!(io::stderr(), "{}", line);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
400 - let _ = write!(io::stderr(), "{}", line);
400 + let _ = write!(io::stderr(), "{line}");
|
warning: variables can be used directly in the `format!` string
--> src/main.rs:471:25
|
471 | let _ = writeln!(
| _________________________^
472 | | io::stderr(),
473 | | "WARNING: invalid color in cargo config: {}",
474 | | err
475 | | );
| |_________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args