Improvements #31
Annotations
2 errors
this expression creates a reference which is immediately dereferenced by the compiler:
src/api_test.rs#L171
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/api_test.rs:171:36
|
171 | let sd_jwt: SdJwt = SdJwt::parse(&sd_jwt).unwrap();
| ^^^^^^^ help: change this to: `sd_jwt`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
= note: `-D clippy::needless-borrow` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_borrow)]`
|
clippy
Clippy had exited with the 101 exit code
|