Skip to content

Merge pull request #30 from alexrudy/dependabot/cargo/thiserror-2 #112

Merge pull request #30 from alexrudy/dependabot/cargo/thiserror-2

Merge pull request #30 from alexrudy/dependabot/cargo/thiserror-2 #112

Triggered via push December 30, 2024 19:05
Status Failure
Total duration 3m 14s
Artifacts

ci.yml

on: push
Matrix: Build
Matrix: Tests
Fit to window
Zoom out
Zoom in

Annotations

11 errors and 50 warnings
the following explicit lifetimes could be elided: 'h: src/jose/mod.rs#L558
error: the following explicit lifetimes could be elided: 'h --> src/jose/mod.rs:558:6 | 558 | impl<'h, H> HeaderAccessMut<'h, H, UnsignedHeader> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 558 - impl<'h, H> HeaderAccessMut<'h, H, UnsignedHeader> { 558 + impl<H> HeaderAccessMut<'_, H, UnsignedHeader> { |
the following explicit lifetimes could be elided: 'h: src/jose/mod.rs#L492
error: the following explicit lifetimes could be elided: 'h --> src/jose/mod.rs:492:6 | 492 | impl<'h, H, State> fmt::JWTFormat for HeaderAccess<'h, H, State> | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 492 - impl<'h, H, State> fmt::JWTFormat for HeaderAccess<'h, H, State> 492 + impl<H, State> fmt::JWTFormat for HeaderAccess<'_, H, State> |
the following explicit lifetimes could be elided: 'h: src/jose/mod.rs#L469
error: the following explicit lifetimes could be elided: 'h --> src/jose/mod.rs:469:6 | 469 | impl<'h, H> HeaderAccess<'h, H, RenderedHeader> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 469 - impl<'h, H> HeaderAccess<'h, H, RenderedHeader> { 469 + impl<H> HeaderAccess<'_, H, RenderedHeader> { |
the following explicit lifetimes could be elided: 'h: src/jose/mod.rs#L447
error: the following explicit lifetimes could be elided: 'h --> src/jose/mod.rs:447:6 | 447 | impl<'h, H> HeaderAccess<'h, H, SignedHeader> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 447 - impl<'h, H> HeaderAccess<'h, H, SignedHeader> { 447 + impl<H> HeaderAccess<'_, H, SignedHeader> { |
the following explicit lifetimes could be elided: 'h: src/jose/mod.rs#L430
error: the following explicit lifetimes could be elided: 'h --> src/jose/mod.rs:430:6 | 430 | impl<'h, H> HeaderAccess<'h, H, UnsignedHeader> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 430 - impl<'h, H> HeaderAccess<'h, H, UnsignedHeader> { 430 + impl<H> HeaderAccess<'_, H, UnsignedHeader> { |
empty line after doc comment: src/jose/mod.rs#L353
error: empty line after doc comment --> src/jose/mod.rs:353:5 | 353 | / /// The JOSE header value, serialized into compact form, used for signing. 354 | | | |_ 355 | pub(crate) fn message(&self) -> Result<String, serde_json::Error> { | ----------------------------------------------------------------- the comment documents this method | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments = note: `-D clippy::empty-line-after-doc-comments` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_doc_comments)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/fmt.rs#L206
error: the following explicit lifetimes could be elided: 'a --> src/fmt.rs:206:6 | 206 | impl<'a, T> fmt::Display for JWTFormatted<'a, T> | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 206 - impl<'a, T> fmt::Display for JWTFormatted<'a, T> 206 + impl<T> fmt::Display for JWTFormatted<'_, T> |
the following explicit lifetimes could be elided: 'i: src/fmt.rs#L113
error: the following explicit lifetimes could be elided: 'i --> src/fmt.rs:113:6 | 113 | impl<'i, W> fmt::Write for IndentWriter<'i, W> | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 113 - impl<'i, W> fmt::Write for IndentWriter<'i, W> 113 + impl<W> fmt::Write for IndentWriter<'_, W> |
the following explicit lifetimes could be elided: 'i: src/fmt.rs#L32
error: the following explicit lifetimes could be elided: 'i --> src/fmt.rs:32:6 | 32 | impl<'i, W> IndentWriter<'i, W> | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 32 - impl<'i, W> IndentWriter<'i, W> 32 + impl<W> IndentWriter<'_, W> |
the following explicit lifetimes could be elided: 'i: src/fmt.rs#L21
error: the following explicit lifetimes could be elided: 'i --> src/fmt.rs:21:6 | 21 | impl<'i, W> fmt::Debug for IndentWriter<'i, W> { | ^^ ^^ | = 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 | 21 - impl<'i, W> fmt::Debug for IndentWriter<'i, W> { 21 + impl<W> fmt::Debug for IndentWriter<'_, W> { |
Lints
Clippy had exited with the 101 exit code
Lints
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Lints
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Lints
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Lints
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Lints
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt,ecdsa,p256,p384,p521, stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (--no-default-features --features fmt,ecdsa,p256,p384,p521, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt,ecdsa,p256,p384,p521, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt,ecdsa,p256,p384,p521, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt,ecdsa,p256,p384,p521, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features rsa,ecdsa,p256,p384,p521, stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (--no-default-features --features rsa,ecdsa,p256,p384,p521, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features rsa,ecdsa,p256,p384,p521, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features rsa,ecdsa,p256,p384,p521, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features rsa,ecdsa,p256,p384,p521, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt,rsa, stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (--no-default-features --features fmt,rsa, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt,rsa, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt,rsa, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt,rsa, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt, stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (--no-default-features --features fmt, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt, stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (--no-default-features --features fmt, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Docs
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Docs
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Docs
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Docs
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (nightly)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Build (nightly)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (nightly)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (nightly)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Build (stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (stable)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (beta)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Build (beta)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (beta)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (beta)
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Build (beta)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/