SD-JWT VC implementation #4642
Annotations
5 errors and 2 warnings
core clippy check:
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, '_> {
|
|
core clippy check:
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<'_, '_> {
|
|
core clippy check:
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<'_, '_> {
|
|
core clippy check:
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<'_> {
|
|
core clippy check
Clippy had exited with the 101 exit code
|
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/
|
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Loading