Skip to content

Bump prost from 0.13.2 to 0.13.3 #31

Bump prost from 0.13.2 to 0.13.3

Bump prost from 0.13.2 to 0.13.3 #31

Triggered via push September 27, 2024 04:33
Status Success
Total duration 1m 5s
Artifacts

check.yml

on: push
Matrix: clippy
Matrix: fmt
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
unneeded `return` statement: easydep-client/src/main.rs#L144
warning: unneeded `return` statement --> easydep-client/src/main.rs:144:7 | 144 | Ok(()) | ^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 144 ~ Okif let Err(err) = command_execution_result { 145 + error!("Issue occurred while executing requested command: {}", err); 146 + exit(1) 147 + } 148 + 149 + Ok(()) |
unneeded `return` statement: easydep-server/src/main.rs#L120
warning: unneeded `return` statement --> easydep-server/src/main.rs:120:9 | 120 | exit(exit_code) | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 120 | exitexit(exit_code) | ~~~~~~~~~~~~~~~