chore: update dependencies

Fixes #318
This commit is contained in:
Michael Aaron Murphy 2024-07-31 08:08:34 +02:00
parent a9cbbeea0a
commit b004b9d815
No known key found for this signature in database
GPG key ID: B2732D4240C9212C
11 changed files with 340 additions and 314 deletions

View file

@ -275,7 +275,7 @@ fn open_image(input_buffer: &mut Vec<u8>, path: &Path) -> Option<DynamicImage> {
}
let input_cursor = std::io::Cursor::new(input_buffer);
let mut image_decoder = image::io::Reader::new(input_cursor);
let mut image_decoder = image::ImageReader::new(input_cursor);
image_decoder = if let Ok(decoder) = image_decoder.with_guessed_format() {
decoder