Add support for StatusList2021 #4211
Annotations
2 errors and 1 warning
useless conversion to the same type: `identity_credential::credential::Status`:
identity_storage/src/storage/tests/credential_validation.rs#L323
error: useless conversion to the same type: `identity_credential::credential::Status`
--> identity_storage/src/storage/tests/credential_validation.rs:323:5
|
323 | / Status::new(
324 | | Url::parse("https://example.com/").unwrap(),
325 | | "UnsupportedStatus2023".to_owned(),
326 | | )
327 | | .into(),
| |___________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
= note: `-D clippy::useless-conversion` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::useless_conversion)]`
help: consider removing `.into()`
|
323 ~ Status::new(
324 + Url::parse("https://example.com/").unwrap(),
325 + "UnsupportedStatus2023".to_owned(),
326 ~ ),
|
|
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/
|