From fbf73634ee72059f59acb7611e07d1830247c332 Mon Sep 17 00:00:00 2001 From: abdulahad5112 <123822052+abdulahad5112@users.noreply.github.com> Date: Tue, 30 Jan 2024 12:39:33 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Undeclared=20mini-mocha=20crate?= =?UTF-8?q?=20error=20when=20building=20the=20app=20with=20features=20othe?= =?UTF-8?q?r=20than=20memory-cache=20#493=20(#501)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cache/cacher.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cache/cacher.rs b/src/cache/cacher.rs index f323395..53d8050 100644 --- a/src/cache/cacher.rs +++ b/src/cache/cacher.rs @@ -4,6 +4,7 @@ use error_stack::Report; #[cfg(feature = "memory-cache")] use mini_moka::sync::Cache as MokaCache; +#[cfg(feature = "memory-cache")] use mini_moka::sync::ConcurrentCacheExt; #[cfg(feature = "memory-cache")]