refactor: remove unused imports
This commit is contained in:
parent
8627ec026f
commit
bba0ec5682
1 changed files with 2 additions and 10 deletions
12
src/main.rs
12
src/main.rs
|
|
@ -1,19 +1,11 @@
|
||||||
use std::{
|
use std::{env, ffi::OsStr, fs, io::Write, path::Path};
|
||||||
env,
|
|
||||||
ffi::OsStr,
|
|
||||||
fs,
|
|
||||||
io::{Read, Write},
|
|
||||||
path::Path,
|
|
||||||
};
|
|
||||||
|
|
||||||
use iced::{
|
use iced::{
|
||||||
Alignment, Color, Element, Length, Renderer, Subscription, Task, Theme, color, event,
|
Alignment, Color, Element, Length, Renderer, Subscription, Task, Theme, color, event,
|
||||||
keyboard::{self, Key, key},
|
keyboard::{self, Key, key},
|
||||||
theme, widget, window,
|
theme, widget, window,
|
||||||
};
|
};
|
||||||
use image::{
|
use image::{DynamicImage, EncodableLayout, ImageDecoder, ImageReader, RgbaImage, imageops};
|
||||||
DynamicImage, EncodableLayout, ImageDecoder, ImageReader, RgbImage, RgbaImage, imageops,
|
|
||||||
};
|
|
||||||
use jpegxl_rs::image::ToDynamic;
|
use jpegxl_rs::image::ToDynamic;
|
||||||
use rfd::FileDialog;
|
use rfd::FileDialog;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue