From c2b1b3db5d4fb577a4e94b47d54fcb34f9773729 Mon Sep 17 00:00:00 2001 From: asonix Date: Fri, 22 Dec 2023 21:01:19 -0600 Subject: [PATCH] Apply cargo fix --- src/magick.rs | 2 +- src/tmp_file.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/magick.rs b/src/magick.rs index 05edbb1..95fb164 100644 --- a/src/magick.rs +++ b/src/magick.rs @@ -8,7 +8,7 @@ use crate::{ tmp_file::TmpDir, }; -use tokio::io::AsyncRead; + pub(crate) const MAGICK_TEMPORARY_PATH: &str = "MAGICK_TEMPORARY_PATH"; diff --git a/src/tmp_file.rs b/src/tmp_file.rs index 440422e..2616448 100644 --- a/src/tmp_file.rs +++ b/src/tmp_file.rs @@ -3,7 +3,7 @@ use std::{ path::{Path, PathBuf}, sync::Arc, }; -use tokio::io::AsyncRead; + use uuid::Uuid; pub(crate) type ArcTmpDir = Arc;