Cargo: Bump 0.25.1 #1517
Annotations
2 warnings
[clippy] boulder/src/draft/build.rs#L121:
boulder/src/draft/build.rs#L121
warning: unnecessary closure used with `bool::then`
--> boulder/src/draft/build.rs:121:27
|
121 | fmt("networking", self.networking.then(|| true))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations
= note: `#[warn(clippy::unnecessary_lazy_evaluations)]` on by default
help: use `then_some` instead
|
121 | fmt("networking", self.networking.then_some(true))
| ~~~~~~~~~~~~~~~
|
Build & Test Project
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|