Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use rocksdb instead of in-memory map to reduce memory footprint #638

Closed
wants to merge 1 commit into from

fix: use rocksdb instead of in-memory map to reduce memory footprint

482b773
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Closed

fix: use rocksdb instead of in-memory map to reduce memory footprint #638

fix: use rocksdb instead of in-memory map to reduce memory footprint
482b773
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Jan 27, 2025 in 4s

clippy

265 warnings

Details

Results

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

Versions

  • rustc 1.84.0 (9fc6b4312 2025-01-07)
  • cargo 1.84.0 (66221abde 2024-11-19)
  • clippy 0.1.84 (9fc6b43126 2025-01-07)

Annotations

Check warning on line 99 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.regions.clingen.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
  --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.regions.clingen.serde.rs:99:22
   |
99 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
   |                      ^^^                     ^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
   |
99 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
99 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
   |

Check warning on line 111 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.helixmtdb.base.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.helixmtdb.base.serde.rs:111:22
    |
111 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
111 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
111 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 422 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.vep_gnomad4.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.vep_gnomad4.serde.rs:422:22
    |
422 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
422 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
422 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 411 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.vep_gnomad3.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.vep_gnomad3.serde.rs:411:22
    |
411 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
411 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
411 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 613 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.vep_gnomad2.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.vep_gnomad2.serde.rs:613:22
    |
613 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
613 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
613 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 156 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.vep_common.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.vep_common.serde.rs:156:22
    |
156 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
156 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
156 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 48 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.vep_common.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
  --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.vep_common.serde.rs:48:22
   |
48 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
   |                      ^^^                     ^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
   |
48 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
48 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
   |

Check warning on line 1638 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
    --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs:1638:22
     |
1638 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
     |                      ^^^                     ^^^
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
     |
1638 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
1638 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
     |

Check warning on line 1316 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
    --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs:1316:22
     |
1316 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
     |                      ^^^                     ^^^
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
     |
1316 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
1316 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
     |

Check warning on line 1143 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
    --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs:1143:22
     |
1143 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
     |                      ^^^                     ^^^
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
     |
1143 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
1143 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
     |

Check warning on line 971 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs:971:22
    |
971 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
971 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
971 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 739 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs:739:22
    |
739 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
739 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
739 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 506 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs:506:22
    |
506 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
506 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
506 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 383 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs:383:14
    |
383 |         impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |              ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
383 -         impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
383 +         impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 264 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs:264:22
    |
264 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
264 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
264 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 86 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
  --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.mtdna.serde.rs:86:22
   |
86 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
   |                      ^^^                     ^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
   |
86 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
86 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
   |

Check warning on line 1214 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
    --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs:1214:14
     |
1214 |         impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
     |              ^^^                     ^^^
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
     |
1214 -         impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
1214 +         impl serde::de::Visitor<'_> for GeneratedVisitor {
     |

Check warning on line 1035 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
    --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs:1035:22
     |
1035 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
     |                      ^^^                     ^^^
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
     |
1035 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
1035 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
     |

Check warning on line 852 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs:852:22
    |
852 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
852 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
852 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 749 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs:749:14
    |
749 |         impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |              ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
749 -         impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
749 +         impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 650 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs:650:14
    |
650 |         impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |              ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
650 -         impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
650 +         impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 534 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs:534:22
    |
534 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
534 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
534 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 407 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs:407:22
    |
407 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
407 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
407 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 155 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
   --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv4.serde.rs:155:22
    |
155 |                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
    |                      ^^^                     ^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
155 -                 impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
155 +                 impl serde::de::Visitor<'_> for GeneratedVisitor {
    |

Check warning on line 1303 in /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv2.serde.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'de

warning: the following explicit lifetimes could be elided: 'de
    --> /home/runner/work/annonars/annonars/target/debug/build/annonars-cfa6a53a4f7d59aa/out/annonars.gnomad.gnomad_sv2.serde.rs:1303:14
     |
1303 |         impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
     |              ^^^                     ^^^
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
     |
1303 -         impl<'de> serde::de::Visitor<'de> for GeneratedVisitor {
1303 +         impl serde::de::Visitor<'_> for GeneratedVisitor {
     |