Skip to content

fix(deps): update rust crate listenfd to v1.0.2 (#384) #1103

fix(deps): update rust crate listenfd to v1.0.2 (#384)

fix(deps): update rust crate listenfd to v1.0.2 (#384) #1103

GitHub Actions / clippy succeeded Jan 20, 2025 in 0s

clippy

2 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 2
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 122 in /Users/runner/work/rblog/rblog/target/debug/build/rblog-9d683f88609ab0c5/out/templates/_utils.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
   --> /Users/runner/work/rblog/rblog/target/debug/build/rblog-9d683f88609ab0c5/out/templates/_utils.rs:122:6
    |
122 | impl<'a> ToHtmlEscapingWriter<'a> {
    |      ^^                       ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
122 - impl<'a> ToHtmlEscapingWriter<'a> {
122 + impl ToHtmlEscapingWriter<'_> {
    |

Check warning on line 96 in /Users/runner/work/rblog/rblog/target/debug/build/rblog-9d683f88609ab0c5/out/templates/_utils.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
  --> /Users/runner/work/rblog/rblog/target/debug/build/rblog-9d683f88609ab0c5/out/templates/_utils.rs:96:6
   |
96 | impl<'a> Write for ToHtmlEscapingWriter<'a> {
   |      ^^                                 ^^
   |
   = 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
   |
96 - impl<'a> Write for ToHtmlEscapingWriter<'a> {
96 + impl Write for ToHtmlEscapingWriter<'_> {
   |