From 350b0911ffb917d5771fbea46f059e3ab954b485 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Fri, 12 Jul 2024 19:01:56 +0200 Subject: [PATCH] chore: cleanup imports --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 3c4cb73..ddff2ee 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,14 +3,14 @@ use std::{ cell::SyncUnsafeCell, - io::{self, Cursor, Error, ErrorKind}, + io::{self, Error, ErrorKind}, iter::once, sync::Arc, time::Duration, }; -use axum::{http::StatusCode, routing::get, Router}; -use image::{GenericImage, GenericImageView, Rgb, Rgba}; +use axum::{routing::get, Router}; +use image::{GenericImageView, Rgb}; use tokio::{ io::{AsyncReadExt, AsyncWriteExt, BufReader, BufWriter}, net::TcpListener,