Skip to content

flake: Update Azalia hash #1018

flake: Update Azalia hash

flake: Update Azalia hash #1018

GitHub Actions / Clippy: Rust Stable 1.84.0-nightly (798fb83f7 2024-10-16) in succeeded Oct 17, 2024 in 13s

Clippy (Stable ~ Linux/x86_64)

Clippy was successful!

Details

Running cargo clippy took roughly ~13032ms to complete

  • Working Directory: repository directory

Annotations

Check warning on line 87 in /home/runner/work/charted/charted/crates/core/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy: Rust Stable 1.84.0-nightly (798fb83f7 2024-10-16) in

/home/runner/work/charted/charted/crates/core/src/lib.rs#L87

the following explicit lifetimes could be elided: 'de
Raw output
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 {
   |

Check warning on line 81 in /home/runner/work/charted/charted/crates/helm-plugin/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy: Rust Stable 1.84.0-nightly (798fb83f7 2024-10-16) in

/home/runner/work/charted/charted/crates/helm-plugin/src/lib.rs#L81

the following explicit lifetimes could be elided: 'de
Raw output
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 {
   |