cargo fmt --all #59
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
2 warnings
unneeded `return` statement:
crates/blockless-car/src/utils/archive_local.rs#L67
warning: unneeded `return` statement
--> crates/blockless-car/src/utils/archive_local.rs:67:5
|
67 | / return move |w: WriteStream| match w {
68 | | WriteStream::Bytes(bs) => {
69 | | hash_codec.update(bs);
70 | | None
... |
79 | | }
80 | | };
| |_____^
|
= 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`
|
clippy_check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-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/
|