From 8b4cb39890016394122a799929aee6662980025b Mon Sep 17 00:00:00 2001 From: HampusM Date: Sat, 16 Sep 2023 15:35:56 +0200 Subject: refactor!: remove async DI container prelude module BREAKING CHANGE: The async DI container prelude module have been removed as it is no longer necessary seeing as the async DI container interface have been removed --- src/di_container/asynchronous/binding/builder.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/di_container/asynchronous/binding/builder.rs') diff --git a/src/di_container/asynchronous/binding/builder.rs b/src/di_container/asynchronous/binding/builder.rs index 7050847..c253929 100644 --- a/src/di_container/asynchronous/binding/builder.rs +++ b/src/di_container/asynchronous/binding/builder.rs @@ -62,7 +62,7 @@ where /// # use std::error::Error; /// # /// # use syrette::injectable; - /// # use syrette::di_container::asynchronous::prelude::*; + /// # use syrette::AsyncDIContainer; /// # /// # trait Foo: Send + Sync {} /// # @@ -130,7 +130,7 @@ where /// # use std::error::Error; /// # /// # use syrette::{factory}; - /// # use syrette::di_container::asynchronous::prelude::*; + /// # use syrette::AsyncDIContainer; /// # use syrette::ptr::TransientPtr; /// # /// # trait Foo: Send + Sync {} @@ -220,7 +220,7 @@ where /// # use std::time::Duration; /// # /// # use syrette::{factory}; - /// # use syrette::di_container::asynchronous::prelude::*; + /// # use syrette::AsyncDIContainer; /// # use syrette::ptr::TransientPtr; /// # use syrette::future::BoxFuture; /// # @@ -320,7 +320,7 @@ where /// ``` /// # use std::error::Error; /// # - /// # use syrette::di_container::asynchronous::prelude::*; + /// # use syrette::AsyncDIContainer; /// # use syrette::ptr::TransientPtr; /// # /// # trait Foo: Send + Sync {} @@ -410,7 +410,7 @@ where /// # use std::error::Error; /// # use std::time::Duration; /// # - /// # use syrette::di_container::asynchronous::prelude::*; + /// # use syrette::AsyncDIContainer; /// # use syrette::ptr::TransientPtr; /// # /// # trait Foo: Send + Sync {} -- cgit v1.2.3-18-g5258