Bump tokio from 1.46.1 to 1.47.1 (#67) #149
Annotations
2 warnings
|
src/main.rs#L39
warning: variables can be used directly in the `format!` string
--> src/main.rs:39:5
|
39 | log::info!("Running flagpole on {:?}", addr);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= 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
|
39 - log::info!("Running flagpole on {:?}", addr);
39 + log::info!("Running flagpole on {addr:?}");
|
|
|
|
The logs for this run have expired and are no longer available.
Loading