Skip to content

Add citation

Add citation #152

GitHub Actions / clippy succeeded Oct 29, 2024 in 0s

clippy

6 warnings

Details

Results

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

Versions

  • rustc 1.84.0-nightly (3f1be1ec7 2024-10-28)
  • cargo 1.84.0-nightly (e75214ea4 2024-10-25)
  • clippy 0.1.84 (3f1be1ec7e 2024-10-28)

Annotations

Check warning on line 628 in src/merge_ska_array.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/merge_ska_array.rs:628:6
    |
628 | impl<'a, IntT> Iterator for KmerIter<'a, IntT>
    |      ^^                              ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
628 - impl<'a, IntT> Iterator for KmerIter<'a, IntT>
628 + impl<IntT> Iterator for KmerIter<'_, IntT>
    |

Check warning on line 111 in src/ska_ref.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

empty line after doc comment

warning: empty line after doc comment
   --> src/ska_ref.rs:110:5
    |
110 | /     /// Mapping information
111 | |
    | |_
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
    = help: if the empty line is unintentional remove it
help: if the documentation should include the empty line include it in the comment
    |
111 |     ///
    |

Check warning on line 102 in src/ska_ref.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

empty line after doc comment

warning: empty line after doc comment
   --> src/ska_ref.rs:101:5
    |
101 | /     /// Input sequence
102 | |
    | |_
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
    = note: `#[warn(clippy::empty_line_after_doc_comments)]` on by default
    = help: if the empty line is unintentional remove it
help: if the documentation should include the empty line include it in the comment
    |
102 |     ///
    |

Check warning on line 50 in src/ska_ref/idx_check.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
  --> src/ska_ref/idx_check.rs:50:6
   |
50 | impl<'a> Iterator for IdxCheckIter<'a> {
   |      ^^                            ^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
   |
50 - impl<'a> Iterator for IdxCheckIter<'a> {
50 + impl Iterator for IdxCheckIter<'_> {
   |

Check warning on line 185 in src/ska_dict/bit_encoding.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/ska_dict/bit_encoding.rs:185:6
    |
185 | impl<'a> UInt<'a> for u128 {
    |      ^^       ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
185 - impl<'a> UInt<'a> for u128 {
185 + impl UInt<'_> for u128 {
    |

Check warning on line 127 in src/ska_dict/bit_encoding.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/ska_dict/bit_encoding.rs:127:6
    |
127 | impl<'a> UInt<'a> for u64 {
    |      ^^       ^^
    |
    = 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
    |
127 - impl<'a> UInt<'a> for u64 {
127 + impl UInt<'_> for u64 {
    |