Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update rust crate image to v0.25.2 #76

Open
wants to merge 2 commits into
base: aurora
Choose a base branch
from

Merge branch 'aurora' into renovate/image-0.x-lockfile

a8636ed
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Open

fix(deps): update rust crate image to v0.25.2 #76

Merge branch 'aurora' into renovate/image-0.x-lockfile
a8636ed
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Aug 30, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (4)

src/bin/main.rs|11 col 17| warning: use of deprecated type alias image::io::Reader: this type has been moved and renamed to image::ImageReader
--> src/bin/main.rs:11:17
|
11 | use image::{io::Reader, GenericImageView};
| ^^^^^^
|
= note: #[warn(deprecated)] on by default
src/bin/main.rs|32 col 15| warning: use of deprecated type alias image::io::Reader: this type has been moved and renamed to image::ImageReader
--> src/bin/main.rs:32:15
|
32 | match Reader::open(path) {
| ^^^^^^
src/bin/main.rs|47 col 26| warning: use of deprecated type alias image::io::Reader: this type has been moved and renamed to image::ImageReader
--> src/bin/main.rs:47:26
|
47 | let Ok(reader) = Reader::new(Cursor::new(buf)).with_guessed_format() else {
| ^^^^^^
src/bin/main.rs|73 col 12| warning: redundant pattern matching, consider using is_some()
--> src/bin/main.rs:73:12
|
73 | if let Some(_) = &opts.background {
| -------^^^^^^^------------------- help: try: if opts.background.is_some()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
= note: #[warn(clippy::redundant_pattern_matching)] on by default