Fix outdated lock file #202
Annotations
5 errors
|
Run clechasseur/rs-clippy-check@v3:
crates/lib/src/serde.rs#L22
error: the following explicit lifetimes could be elided: 'de
--> crates/lib/src/serde.rs:22:14
|
22 | impl<'de> Visitor<'de> for VersionVisitor {
| ^^^ ^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
22 - impl<'de> Visitor<'de> for VersionVisitor {
22 + impl Visitor<'_> for VersionVisitor {
|
|
Run clechasseur/rs-clippy-check@v3:
crates/lib/src/serde.rs#L63
error: the following explicit lifetimes could be elided: 'de
--> crates/lib/src/serde.rs:63:14
|
63 | impl<'de> Visitor<'de> for FactorioVersionVisitor {
| ^^^ ^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
63 - impl<'de> Visitor<'de> for FactorioVersionVisitor {
63 + impl Visitor<'_> for FactorioVersionVisitor {
|
|
Run clechasseur/rs-clippy-check@v3:
crates/lib/src/serde.rs#L106
error: the following explicit lifetimes could be elided: 'de
--> crates/lib/src/serde.rs:106:14
|
106 | impl<'de> Visitor<'de> for DependencyVisitor {
| ^^^ ^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
106 - impl<'de> Visitor<'de> for DependencyVisitor {
106 + impl Visitor<'_> for DependencyVisitor {
|
|
Run clechasseur/rs-clippy-check@v3
Clippy has exited with exit code 101
|
Loading