Bump serde from 1.0.210 to 1.0.219 (#60) #151
Annotations
2 warnings and 3 notices
|
variables can be used directly in the `format!` string:
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:?}");
|
|
|
lint
Unexpected input(s) 'token', valid inputs are ['toolchain', 'args', 'use-cross', 'working-directory']
|
|
build (macos-latest)
The macos-latest label will migrate to macOS 15 beginning August 4, 2025. For more information see https://github.com/actions/runner-images/issues/12520
|
|
build (macos-latest)
The macos-latest label will migrate to macOS 15 beginning August 4, 2025. For more information see https://github.com/actions/runner-images/issues/12520
|
|
build (windows-latest)
The windows-latest label will migrate from Windows Server 2022 to Windows Server 2025 beginning September 2, 2025. For more information see https://github.com/actions/runner-images/issues/12677
|