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

ci: automated update to rustc 1.83.0 #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

ci: automated update to rustc 1.83.0

fc95f52
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Open

ci: automated update to rustc 1.83.0 #9

ci: automated update to rustc 1.83.0
fc95f52
Select commit
Loading
Failed to load commit list.
GitHub Actions / Clippy Results failed Dec 15, 2024 in 0s

Clippy Results

5 errors

Details

Results

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

Versions

  • rustc 1.83.0 (90b35a623 2024-11-26)
  • cargo 1.83.0 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (90b35a6 2024-11-26)

Annotations

Check failure on line 540 in crates/core/src/spk_client.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Results

the following explicit lifetimes could be elided: 'r

error: the following explicit lifetimes could be elided: 'r
   --> crates/core/src/spk_client.rs:540:6
    |
540 | impl<'r, I> Iterator for SyncIter<'r, I, OutPoint> {
    |      ^^                           ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
540 - impl<'r, I> Iterator for SyncIter<'r, I, OutPoint> {
540 + impl<I> Iterator for SyncIter<'_, I, OutPoint> {
    |

Check failure on line 527 in crates/core/src/spk_client.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Results

the following explicit lifetimes could be elided: 'r

error: the following explicit lifetimes could be elided: 'r
   --> crates/core/src/spk_client.rs:527:6
    |
527 | impl<'r, I> Iterator for SyncIter<'r, I, Txid> {
    |      ^^                           ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
527 - impl<'r, I> Iterator for SyncIter<'r, I, Txid> {
527 + impl<I> Iterator for SyncIter<'_, I, Txid> {
    |

Check failure on line 514 in crates/core/src/spk_client.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Results

the following explicit lifetimes could be elided: 'r

error: the following explicit lifetimes could be elided: 'r
   --> crates/core/src/spk_client.rs:514:6
    |
514 | impl<'r, I> Iterator for SyncIter<'r, I, ScriptBuf> {
    |      ^^                           ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
514 - impl<'r, I> Iterator for SyncIter<'r, I, ScriptBuf> {
514 + impl<I> Iterator for SyncIter<'_, I, ScriptBuf> {
    |

Check failure on line 488 in crates/core/src/spk_client.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Results

the following explicit lifetimes could be elided: 'r

error: the following explicit lifetimes could be elided: 'r
   --> crates/core/src/spk_client.rs:488:6
    |
488 | impl<'r, K: Ord + Clone> Iterator for KeychainSpkIter<'r, K> {
    |      ^^                                               ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
488 - impl<'r, K: Ord + Clone> Iterator for KeychainSpkIter<'r, K> {
488 + impl<K: Ord + Clone> Iterator for KeychainSpkIter<'_, K> {
    |

Check failure on line 24 in crates/core/src/spk_client.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Results

the following explicit lifetimes could be elided: 'i

error: the following explicit lifetimes could be elided: 'i
  --> crates/core/src/spk_client.rs:24:6
   |
24 | impl<'i, I: core::fmt::Debug + core::any::Any> core::fmt::Display for SyncItem<'i, I> {
   |      ^^                                                                        ^^
   |
   = 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
   |
24 - impl<'i, I: core::fmt::Debug + core::any::Any> core::fmt::Display for SyncItem<'i, I> {
24 + impl<I: core::fmt::Debug + core::any::Any> core::fmt::Display for SyncItem<'_, I> {
   |