Add support for StatusList2021 #4200
Annotations
3 errors and 1 warning
accessing first element with `linked_domain_services.get(0)`:
examples/1_advanced/6_domain_linkage.rs#L182
error: accessing first element with `linked_domain_services.get(0)`
--> examples/1_advanced/6_domain_linkage.rs:182:25
|
182 | let domains: &[Url] = linked_domain_services
| _________________________^
183 | | .get(0)
| |___________^ help: try: `linked_domain_services.first()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first
= note: `-D clippy::get-first` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::get_first)]`
|
accessing first element with `domains.get(0)`:
examples/1_advanced/6_domain_linkage.rs#L187
error: accessing first element with `domains.get(0)`
--> examples/1_advanced/6_domain_linkage.rs:187:25
|
187 | let domain_foo: Url = domains
| _________________________^
188 | | .get(0)
| |___________^ help: try: `domains.first()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first
|
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/
|