Skip to content

Update Rust crate itertools to v0.12.1 #820

Update Rust crate itertools to v0.12.1

Update Rust crate itertools to v0.12.1 #820

GitHub Actions / clippy failed May 5, 2024 in 1s

clippy

1 error

Details

Results

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

Versions

  • rustc 1.80.0-nightly (e82c861d7 2024-05-04)
  • cargo 1.80.0-nightly (05364cb2f 2024-05-03)
  • clippy 0.1.80 (e82c861 2024-05-04)

Annotations

Check failure on line 1155 in /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-serialize-0.3.24/src/serialize.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the parameter type `T` may not live long enough

error[E0310]: the parameter type `T` may not live long enough
    --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-serialize-0.3.24/src/serialize.rs:1155:5
     |
1155 |     fn decode<D: Decoder>(d: &mut D) -> Result<Cow<'static, T>, D::Error> {
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |     |
     |     the parameter type `T` must be valid for the static lifetime...
     |     ...so that the type `T` will meet its required lifetime bounds...
     |
note: ...that is required by this bound
    --> /rustc/e82c861d7e5ecd766cb0dab0bf622445dec999dc/library/alloc/src/borrow.rs:180:30
help: consider adding an explicit lifetime bound
     |
1151 | impl<'a, T: ?Sized + 'static> Decodable for Cow<'a, T>
     |                    +++++++++