build(deps): bump metrics-exporter-prometheus from 0.16.0 to 0.16.1 #354
Annotations
2 warnings
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) {
|
|