Skip to content

Merge pull request #3 from cowlicks/version-bump #23

Merge pull request #3 from cowlicks/version-bump

Merge pull request #3 from cowlicks/version-bump #23

Triggered via push December 9, 2025 05:25
Status Success
Total duration 1m 30s
Artifacts

ci.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

1 warning
this can be `std::io::Error::other(_)`: src/error.rs#L90
warning: this can be `std::io::Error::other(_)` --> src/error.rs:90:18 | 90 | _ => std::io::Error::new(std::io::ErrorKind::Other, format!("{e}")), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#io_other_error = note: `#[warn(clippy::io_other_error)]` on by default help: use `std::io::Error::other` | 90 - _ => std::io::Error::new(std::io::ErrorKind::Other, format!("{e}")), 90 + _ => std::io::Error::other(format!("{e}")), |