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;