Skip to content

Commit

Permalink
fix(crates/base): replace image::io::Reader with image::ImageReader
Browse files Browse the repository at this point in the history
  • Loading branch information
xrelkd committed Jul 25, 2024
1 parent 3725a27 commit 88e852e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/base/src/entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl Entry {
};

let cursor = std::io::Cursor::new(&data);
let mut reader = image::io::Reader::new(cursor);
let mut reader = image::ImageReader::new(cursor);
reader.set_format(image_format);
reader
.decode()
Expand Down

0 comments on commit 88e852e

Please sign in to comment.