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 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'examples/basic/bootstrap.rs') 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(); -- cgit v1.2.3-18-g5258