Add support for StatusList2021 #4228
Annotations
2 errors and 1 warning
this let-binding has unit value:
examples/1_advanced/8_status_list_2021.rs#L152
error: this let-binding has unit value
--> examples/1_advanced/8_status_list_2021.rs:152:3
|
152 | / let _ = JwtCredentialValidatorUtils::check_status_with_status_list_2021(
153 | | &credential,
154 | | &status_list_credential,
155 | | StatusCheck::Strict,
156 | | )?;
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
= note: `-D clippy::let-unit-value` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::let_unit_value)]`
help: omit the `let` binding
|
152 ~ JwtCredentialValidatorUtils::check_status_with_status_list_2021(
153 + &credential,
154 + &status_list_credential,
155 + StatusCheck::Strict,
156 + )?;
|
|
clippy
Clippy had exited with the 101 exit code
|
clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: jetli/wasm-bindgen-action@24ba6f9fff570246106ac3f80f35185600c3f6c9. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|