diff --git a/daemon/src/runtime/image/cache.rs b/daemon/src/runtime/image/cache.rs
index ca59540..d8c1b37 100644
--- a/daemon/src/runtime/image/cache.rs
+++ b/daemon/src/runtime/image/cache.rs
@@ -2,8 +2,8 @@ use super::ImageInfo;
use anyhow::Result;
use log::debug;
use oci_spec::image::{ImageConfiguration, ImageManifest};
-use std::fs;
use std::path::{Path, PathBuf};
+use tokio::fs;
pub struct ImageCache {
cache_dir: PathBuf,
@@ -16,7 +16,7 @@ impl ImageCache {
})
}
- pub fn recall(&self, digest: &str) -> Result