Skip to content

SD-JWT VC implementation #4642

SD-JWT VC implementation

SD-JWT VC implementation #4642

Triggered via pull request December 11, 2024 16:14
Status Failure
Total duration 50s
Artifacts

clippy.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

5 errors and 2 warnings
the following explicit lifetimes could be elided: 'decoder, 'signatures: identity_jose/src/jws/decoder.rs#L325
error: the following explicit lifetimes could be elided: 'decoder, 'signatures --> identity_jose/src/jws/decoder.rs:325:6 | 325 | impl<'decoder, 'payload, 'signatures> Iterator for JwsValidationIter<'decoder, 'payload, 'signatures> { | ^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^ ^^^^^^^^^^^ | = 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 | 325 - impl<'decoder, 'payload, 'signatures> Iterator for JwsValidationIter<'decoder, 'payload, 'signatures> { 325 + impl<'payload> Iterator for JwsValidationIter<'_, 'payload, '_> { |
the following explicit lifetimes could be elided: 'payload, 'unprotected: identity_jose/src/jws/encoding/utils.rs#L89
error: the following explicit lifetimes could be elided: 'payload, 'unprotected --> identity_jose/src/jws/encoding/utils.rs:89:6 | 89 | impl<'payload, 'unprotected> Flatten<'payload, 'unprotected> { | ^^^^^^^^ ^^^^^^^^^^^^ ^^^^^^^^ ^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 89 - impl<'payload, 'unprotected> Flatten<'payload, 'unprotected> { 89 + impl Flatten<'_, '_> { |
the following explicit lifetimes could be elided: 'payload, 'unprotected: identity_jose/src/jws/encoding/utils.rs#L102
error: the following explicit lifetimes could be elided: 'payload, 'unprotected --> identity_jose/src/jws/encoding/utils.rs:102:6 | 102 | impl<'payload, 'unprotected> General<'payload, 'unprotected> { | ^^^^^^^^ ^^^^^^^^^^^^ ^^^^^^^^ ^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 102 - impl<'payload, 'unprotected> General<'payload, 'unprotected> { 102 + impl General<'_, '_> { |
the following explicit lifetimes could be elided: 'a: identity_jose/src/jws/recipient.rs#L18
error: the following explicit lifetimes could be elided: 'a --> identity_jose/src/jws/recipient.rs:18:6 | 18 | impl<'a> Default for Recipient<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 18 - impl<'a> Default for Recipient<'a> { 18 + impl Default for Recipient<'_> { |
clippy
Clippy had exited with the 101 exit code
clippy
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/[email protected]. Please update your workflow to use the latest version of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-09-16-notice-of-upcoming-deprecations-and-changes-in-github-actions-services/
clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636