aboutsummaryrefslogtreecommitdiff
path: root/src/di_container/asynchronous
diff options
context:
space:
mode:
Diffstat (limited to 'src/di_container/asynchronous')
-rw-r--r--src/di_container/asynchronous/binding/builder.rs4
-rw-r--r--src/di_container/asynchronous/binding/scope_configurator.rs4
-rw-r--r--src/di_container/asynchronous/mod.rs4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/di_container/asynchronous/binding/builder.rs b/src/di_container/asynchronous/binding/builder.rs
index 9fa5115..5862d63 100644
--- a/src/di_container/asynchronous/binding/builder.rs
+++ b/src/di_container/asynchronous/binding/builder.rs
@@ -11,9 +11,9 @@ use crate::di_container::asynchronous::binding::when_configurator::AsyncBindingW
use crate::di_container::asynchronous::IAsyncDIContainer;
use crate::errors::async_di_container::AsyncBindingBuilderError;
use crate::interfaces::async_injectable::AsyncInjectable;
-use crate::util::use_dependency_history;
+use crate::util::use_double;
-use_dependency_history!();
+use_double!(crate::dependency_history::DependencyHistory);
/// Alias for a threadsafe boxed function.
#[cfg(feature = "factory")]
diff --git a/src/di_container/asynchronous/binding/scope_configurator.rs b/src/di_container/asynchronous/binding/scope_configurator.rs
index a4a684b..0b5bad8 100644
--- a/src/di_container/asynchronous/binding/scope_configurator.rs
+++ b/src/di_container/asynchronous/binding/scope_configurator.rs
@@ -10,9 +10,9 @@ use crate::errors::async_di_container::AsyncBindingScopeConfiguratorError;
use crate::interfaces::async_injectable::AsyncInjectable;
use crate::provider::r#async::{AsyncSingletonProvider, AsyncTransientTypeProvider};
use crate::ptr::ThreadsafeSingletonPtr;
-use crate::util::use_dependency_history;
+use crate::util::use_double;
-use_dependency_history!();
+use_double!(crate::dependency_history::DependencyHistory);
/// Scope configurator for a binding for type `Interface` inside a [`IAsyncDIContainer`].
///
diff --git a/src/di_container/asynchronous/mod.rs b/src/di_container/asynchronous/mod.rs
index 0db6782..2939ddd 100644
--- a/src/di_container/asynchronous/mod.rs
+++ b/src/di_container/asynchronous/mod.rs
@@ -66,9 +66,9 @@ use crate::private::cast::boxed::CastBox;
use crate::private::cast::error::CastError;
use crate::provider::r#async::{AsyncProvidable, IAsyncProvider};
use crate::ptr::SomePtr;
-use crate::util::use_dependency_history;
+use crate::util::use_double;
-use_dependency_history!();
+use_double!(crate::dependency_history::DependencyHistory);
pub mod binding;
pub mod prelude;