Enable TLS native roots by default. (#4057) #1620
Annotations
3 warnings
|
variables can be used directly in the `format!` string:
src/taskchampion-cpp/src/lib.rs#L377
warning: variables can be used directly in the `format!` string
--> src/taskchampion-cpp/src/lib.rs:377:9
|
377 | panic!("{} is not a valid UUID", uuid);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
377 - panic!("{} is not a valid UUID", uuid);
377 + panic!("{uuid} is not a valid UUID");
|
|
|
variables can be used directly in the `format!` string:
src/taskchampion-cpp/src/lib.rs#L334
warning: variables can be used directly in the `format!` string
--> src/taskchampion-cpp/src/lib.rs:334:13
|
334 | write!(f, "{}", entire_msg)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
334 - write!(f, "{}", entire_msg)
334 + write!(f, "{entire_msg}")
|
|
|
variables can be used directly in the `format!` string:
src/taskchampion-cpp/src/lib.rs#L333
warning: variables can be used directly in the `format!` string
--> src/taskchampion-cpp/src/lib.rs:333:47
|
333 | .fold(err.to_string(), |a, b| format!("{}: {}", a, b));
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
|
333 - .fold(err.to_string(), |a, b| format!("{}: {}", a, b));
333 + .fold(err.to_string(), |a, b| format!("{a}: {b}"));
|
|