Add support for percent encoded characters in did url components #12
Annotations
3 errors and 1 warning
the following explicit lifetimes could be elided: 'a:
src/did.rs#L288
error: the following explicit lifetimes could be elided: 'a
--> src/did.rs:288:8
|
288 | impl<'a> Path<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
288 - impl<'a> Path<'a> {
288 + impl Path<'_> {
|
|
the following explicit lifetimes could be elided: 'a:
src/did.rs#L282
error: the following explicit lifetimes could be elided: 'a
--> src/did.rs:282:8
|
282 | impl<'a> Default for Path<'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
|
282 - impl<'a> Default for Path<'a> {
282 + impl Default for Path<'_> {
|
|
build
Clippy had exited with the 101 exit code
|
build
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|