Skip to content

build(deps): bump serde from 1.0.216 to 1.0.217 #349

build(deps): bump serde from 1.0.216 to 1.0.217

build(deps): bump serde from 1.0.216 to 1.0.217 #349

Triggered via push December 30, 2024 20:51
Status Success
Total duration 1m 9s
Artifacts

clippy.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
/home/runner/work/api-rs/api-rs/src/main.rs#L43
the following explicit lifetimes could be elided: 'a
clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
the following explicit lifetimes could be elided: 'a: src/main.rs#L43
warning: the following explicit lifetimes could be elided: 'a --> src/util.rs:43:6 | 43 | impl<'a> IntoAppError for (StatusCode, &'a str) { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 43 - impl<'a> IntoAppError for (StatusCode, &'a str) { 43 + impl IntoAppError for (StatusCode, &str) { |