From 7a29741f187712a896303666e8e4b069e6dd2b1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gonz=C3=A1lez?= Date: Sat, 28 Sep 2024 15:41:54 +0200 Subject: [PATCH] Run `cargo fmt` --- src/sanity_checks.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sanity_checks.rs b/src/sanity_checks.rs index 9c0f71ea..0900204f 100644 --- a/src/sanity_checks.rs +++ b/src/sanity_checks.rs @@ -1,6 +1,7 @@ +use std::io::Cursor; + use image::{codecs::png::PngDecoder, *}; use log::{error, warn}; -use std::io::Cursor; #[cfg(not(feature = "parallel"))] use crate::rayon;