Skip to content

Merge pull request #53 from Electric-Coin-Company/encrypted-mnemonic #155

Merge pull request #53 from Electric-Coin-Company/encrypted-mnemonic

Merge pull request #53 from Electric-Coin-Company/encrypted-mnemonic #155

GitHub Actions / Clippy Result (stable) failed Dec 8, 2024 in 2m 50s

Clippy (Stable ~ Linux/x86_64)

Clippy failed.

Details

Running cargo clippy took roughly ~170059ms to complete

  • Working Directory: repository directory

Annotations

Check failure on line 102 in /home/runner/work/zec-sqlite-cli/zec-sqlite-cli/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Result (stable)

/home/runner/work/zec-sqlite-cli/zec-sqlite-cli/src/main.rs#L102

the following explicit lifetimes could be elided: 'a
Raw output
error: the following explicit lifetimes could be elided: 'a
   --> src/remote.rs:102:6
    |
102 | impl<'a> fmt::Display for Server<'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
    |
102 - impl<'a> fmt::Display for Server<'a> {
102 + impl fmt::Display for Server<'_> {
    |