Skip to content

chore(main): release 0.25.5 #109

chore(main): release 0.25.5

chore(main): release 0.25.5 #109

GitHub Actions / clippy succeeded Mar 28, 2024 in 0s

clippy

1 warning

Details

Results

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

Versions

  • rustc 1.77.0 (aedd173a2 2024-03-17)
  • cargo 1.77.0 (3fe68eabf 2024-02-29)
  • clippy 0.1.77 (aedd173 2024-03-17)

Annotations

Check warning on line 421 in src/db/create/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

single-character string constant used as pattern

warning: single-character string constant used as pattern
   --> src/db/create/mod.rs:421:95
    |
421 |                 if (!is_mt && !aa_sequence.ends_with('*')) || (is_mt && !aa_sequence.contains("*"))
    |                                                                                               ^^^ help: consider using a `char`: `'*'`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern
    = note: `#[warn(clippy::single_char_pattern)]` on by default