Skip to content

build(deps): bump anyhow from 1.0.93 to 1.0.94 #326

build(deps): bump anyhow from 1.0.93 to 1.0.94

build(deps): bump anyhow from 1.0.93 to 1.0.94 #326

Triggered via push December 9, 2024 20:23
Status Success
Total duration 32s
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) { |