Support %-encoded characters in DID URL #4649
Annotations
3 errors and 2 warnings
the following explicit lifetimes could be elided: 'a:
src/common/imported_document_lock.rs#L82
error: the following explicit lifetimes could be elided: 'a
--> src/common/imported_document_lock.rs:82:6
|
82 | impl<'a> AsRef<CoreDocument> for ImportedDocumentReadGuard<'a> {
| ^^ ^^
|
= 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
|
82 - impl<'a> AsRef<CoreDocument> for ImportedDocumentReadGuard<'a> {
82 + impl AsRef<CoreDocument> for ImportedDocumentReadGuard<'_> {
|
|
the following explicit lifetimes could be elided: 'a:
src/error.rs#L154
error: the following explicit lifetimes could be elided: 'a
--> src/error.rs:154:6
|
154 | impl<'a, E: std::error::Error> Display for ErrorMessage<'a, E> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
154 - impl<'a, E: std::error::Error> Display for ErrorMessage<'a, E> {
154 + impl<E: std::error::Error> Display for ErrorMessage<'_, E> {
|
|
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 either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
|
clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|