Merge pull request #3 from cowlicks/version-bump #23
ci.yml
on: push
test-linux
27s
test-windows
1m 18s
test-macos
31s
build-extra
1m 9s
lint
29s
CI is green
2s
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}")),
|
|