Add support for StatusList2021 #4220
Annotations
3 errors and 1 warning
core clippy check:
identity_credential/src/revocation/status_list_2021/status_list.rs#L145
error: used `assert_eq!` with a literal bool
--> identity_credential/src/revocation/status_list_2021/status_list.rs:145:5
|
145 | assert_eq!(status_list.get(131071).unwrap(), true);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bool_assert_comparison
= note: `-D clippy::bool-assert-comparison` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::bool_assert_comparison)]`
help: replace it with `assert!(..)`
|
145 - assert_eq!(status_list.get(131071).unwrap(), true);
145 + assert!(status_list.get(131071).unwrap());
|
|
core clippy check:
identity_credential/src/revocation/status_list_2021/status_list.rs#L158
error: used `assert_eq!` with a literal bool
--> identity_credential/src/revocation/status_list_2021/status_list.rs:158:5
|
158 | assert_eq!(status_list.get(42).unwrap(), true);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bool_assert_comparison
help: replace it with `assert!(..)`
|
158 - assert_eq!(status_list.get(42).unwrap(), true);
158 + assert!(status_list.get(42).unwrap());
|
|
core clippy check
Clippy had exited with the 101 exit code
|
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/
|
The logs for this run have expired and are no longer available.
Loading