aboutsummaryrefslogtreecommitdiff
path: root/src/di_container/asynchronous/mod.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-08-16 18:46:09 +0200
committerHampusM <hampus@hampusmat.com>2023-08-16 18:46:09 +0200
commit9e1edb7c0e1021a02766bd539c151eefc53ee0ef (patch)
treedaeab4921a991cd3647f9f1be9d27e862c892c8c /src/di_container/asynchronous/mod.rs
parentcc48563f774423fe591911fed413cf3db4ba326e (diff)
chore: fix warnings when only the async feature enabled
Diffstat (limited to 'src/di_container/asynchronous/mod.rs')
-rw-r--r--src/di_container/asynchronous/mod.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/di_container/asynchronous/mod.rs b/src/di_container/asynchronous/mod.rs
index d330f4a..0db6782 100644
--- a/src/di_container/asynchronous/mod.rs
+++ b/src/di_container/asynchronous/mod.rs
@@ -65,7 +65,7 @@ use crate::private::cast::arc::CastArc;
use crate::private::cast::boxed::CastBox;
use crate::private::cast::error::CastError;
use crate::provider::r#async::{AsyncProvidable, IAsyncProvider};
-use crate::ptr::{SomePtr, TransientPtr};
+use crate::ptr::SomePtr;
use crate::util::use_dependency_history;
use_dependency_history!();
@@ -306,6 +306,7 @@ impl AsyncDIContainer
#[cfg(feature = "factory")]
AsyncProvidable::DefaultFactory(binding) => {
use crate::private::factory::IThreadsafeFactory;
+ use crate::ptr::TransientPtr;
let default_factory = Self::cast_factory_binding::<
dyn IThreadsafeFactory<
@@ -319,6 +320,7 @@ impl AsyncDIContainer
#[cfg(feature = "factory")]
AsyncProvidable::AsyncDefaultFactory(binding) => {
use crate::private::factory::IThreadsafeFactory;
+ use crate::ptr::TransientPtr;
let async_default_factory = Self::cast_factory_binding::<
dyn IThreadsafeFactory<