From a1ddd1bc6e1af0d98b87126d3e86da30bc1d3f1c Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 17 Sep 2023 13:32:06 +0200 Subject: refactor!: make the blocking DI container not inside a Rc BREAKING CHANGE: The blocking DI container is no longer inside of a Rc. This affects BindingBuilder, BindingScopeConfigurator, BindingWhenConfigurator & Injectable --- examples/basic/bootstrap.rs | 3 +-- examples/factory/bootstrap.rs | 3 +-- examples/generics/bootstrap.rs | 4 +--- examples/named/bootstrap.rs | 4 +--- examples/with-3rd-party/bootstrap.rs | 3 +-- 5 files changed, 5 insertions(+), 12 deletions(-) (limited to 'examples') diff --git a/examples/basic/bootstrap.rs b/examples/basic/bootstrap.rs index 2c45676..95632f2 100644 --- a/examples/basic/bootstrap.rs +++ b/examples/basic/bootstrap.rs @@ -1,5 +1,4 @@ use std::error::Error; -use std::rc::Rc; use syrette::DIContainer; @@ -10,7 +9,7 @@ use crate::interfaces::cat::ICat; use crate::interfaces::dog::IDog; use crate::interfaces::human::IHuman; -pub fn bootstrap() -> Result, Box> +pub fn bootstrap() -> Result> { let mut di_container = DIContainer::new(); diff --git a/examples/factory/bootstrap.rs b/examples/factory/bootstrap.rs index f8bef6e..5543ee5 100644 --- a/examples/factory/bootstrap.rs +++ b/examples/factory/bootstrap.rs @@ -1,5 +1,4 @@ use std::error::Error; -use std::rc::Rc; use syrette::ptr::TransientPtr; use syrette::DIContainer; @@ -9,7 +8,7 @@ use crate::interfaces::user_manager::IUserManager; use crate::user::User; use crate::user_manager::UserManager; -pub fn bootstrap() -> Result, Box> +pub fn bootstrap() -> Result> { let mut di_container = DIContainer::new(); diff --git a/examples/generics/bootstrap.rs b/examples/generics/bootstrap.rs index 98d03db..233cd59 100644 --- a/examples/generics/bootstrap.rs +++ b/examples/generics/bootstrap.rs @@ -1,11 +1,9 @@ -use std::rc::Rc; - use syrette::{di_container_bind, DIContainer}; use crate::interfaces::printer::IPrinter; use crate::printer::Printer; -pub fn bootstrap() -> Rc +pub fn bootstrap() -> DIContainer { let mut di_container = DIContainer::new(); diff --git a/examples/named/bootstrap.rs b/examples/named/bootstrap.rs index 5f63b47..f7b66ad 100644 --- a/examples/named/bootstrap.rs +++ b/examples/named/bootstrap.rs @@ -1,5 +1,3 @@ -use std::rc::Rc; - use anyhow::Result; use syrette::DIContainer; @@ -9,7 +7,7 @@ use crate::katana::Katana; use crate::ninja::Ninja; use crate::shuriken::Shuriken; -pub fn bootstrap() -> Result> +pub fn bootstrap() -> Result { let mut di_container = DIContainer::new(); diff --git a/examples/with-3rd-party/bootstrap.rs b/examples/with-3rd-party/bootstrap.rs index 4fea754..5cd0f85 100644 --- a/examples/with-3rd-party/bootstrap.rs +++ b/examples/with-3rd-party/bootstrap.rs @@ -1,5 +1,4 @@ use std::error::Error; -use std::rc::Rc; use syrette::ptr::TransientPtr; use syrette::{declare_default_factory, DIContainer}; @@ -10,7 +9,7 @@ use crate::ninja::Ninja; declare_default_factory!(Shuriken); -pub fn bootstrap() -> Result, Box> +pub fn bootstrap() -> Result> { let mut di_container = DIContainer::new(); -- cgit v1.2.3-18-g5258