Skip to content

chrono::NaiveDate support in AutoJsJson #1701

chrono::NaiveDate support in AutoJsJson

chrono::NaiveDate support in AutoJsJson #1701

GitHub Actions / Vertigo Clippy Output failed Oct 31, 2024 in 0s

Vertigo Clippy Output

1 error

Details

Results

Message level Amount
Internal compiler error 0
Error 1
Warning 0
Note 0
Help 0

Versions

  • rustc 1.84.0-nightly (759e07f06 2024-10-30)
  • cargo 1.84.0-nightly (e75214ea4 2024-10-25)
  • clippy 0.1.84 (759e07f063 2024-10-30)

Annotations

Check failure on line 24 in crates/vertigo/src/computed/dependencies/graph_one_to_many.rs

See this annotation in the file changed.

@github-actions github-actions / Vertigo Clippy Output

the following explicit lifetimes could be elided: 'a

error: the following explicit lifetimes could be elided: 'a
  --> crates/vertigo/src/computed/dependencies/graph_one_to_many.rs:24:6
   |
24 | impl<'a> Iterator for GraphEdgeIter<'a> {
   |      ^^                             ^^
   |
   = 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
   |
24 - impl<'a> Iterator for GraphEdgeIter<'a> {
24 + impl Iterator for GraphEdgeIter<'_> {
   |