Upgrade dependencies #5269
Annotations
2 warnings
Run auguwu/[email protected]:
crates/core/src/lib.rs#L87
warning: the following explicit lifetimes could be elided: 'de
--> crates/core/src/serde/duration.rs:87:14
|
87 | impl<'de> serde::de::Visitor<'de> for Visitor {
| ^^^ ^^^
|
= 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
|
87 - impl<'de> serde::de::Visitor<'de> for Visitor {
87 + impl serde::de::Visitor<'_> for Visitor {
|
|
Run auguwu/[email protected]:
crates/helm-plugin/src/lib.rs#L81
warning: the following explicit lifetimes could be elided: 'de
--> crates/helm-plugin/src/config/repository.rs:81:14
|
81 | impl<'de> de::Visitor<'de> for Visitor {
| ^^^ ^^^
|
= 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
|
81 - impl<'de> de::Visitor<'de> for Visitor {
81 + impl de::Visitor<'_> for Visitor {
|
|
Loading