Skip to content

cargo-mobile2 0.7 #4840

cargo-mobile2 0.7

cargo-mobile2 0.7 #4840

Triggered via push October 7, 2023 10:15
Status Success
Total duration 1m 34s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention

audit.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

6 errors and 1 warning
redundant guard: src/lib.rs#L299
error: redundant guard --> src/lib.rs:299:20 | 299 | Ok(s) if s == 0 => break, | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards help: try | 299 - Ok(s) if s == 0 => break, 299 + Ok(0) => break, |
redundant guard: src/lib.rs#L281
error: redundant guard --> src/lib.rs:281:20 | 281 | Ok(s) if s == 0 => break, | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards help: try | 281 - Ok(s) if s == 0 => break, 281 + Ok(0) => break, |
redundant guard: src/lib.rs#L299
error: redundant guard --> src/lib.rs:299:20 | 299 | Ok(s) if s == 0 => break, | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards help: try | 299 - Ok(s) if s == 0 => break, 299 + Ok(0) => break, |
redundant guard: src/lib.rs#L281
error: redundant guard --> src/lib.rs:281:20 | 281 | Ok(s) if s == 0 => break, | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards help: try | 281 - Ok(s) if s == 0 => break, 281 + Ok(0) => break, |
redundant guard: src/interface/rust/desktop.rs#L251
error: redundant guard --> src/interface/rust/desktop.rs:251:18 | 251 | Ok(s) if s == 0 => break, | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards = note: `-D clippy::redundant-guards` implied by `-D warnings` help: try | 251 - Ok(s) if s == 0 => break, 251 + Ok(0) => break, |
redundant guard: src/interface/rust/desktop.rs#L251
error: redundant guard --> src/interface/rust/desktop.rs:251:18 | 251 | Ok(s) if s == 0 => break, | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards = note: `-D clippy::redundant-guards` implied by `-D warnings` help: try | 251 - Ok(s) if s == 0 => break, 251 + Ok(0) => break, |
audit-rust
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/audit-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/