From e8e48906a3899e71c9c9d86a3d4528cb7d17e5b9 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sat, 17 Sep 2022 12:57:18 +0200 Subject: refactor!: make DI container be used inside of a Rc BREAKING CHANGE: The DI container is to be used inside of a Rc & it also no longer implements Default --- examples/with-3rd-party/bootstrap.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'examples/with-3rd-party/bootstrap.rs') diff --git a/examples/with-3rd-party/bootstrap.rs b/examples/with-3rd-party/bootstrap.rs index 49de7fa..a4bd84a 100644 --- a/examples/with-3rd-party/bootstrap.rs +++ b/examples/with-3rd-party/bootstrap.rs @@ -1,4 +1,5 @@ use std::error::Error; +use std::rc::Rc; use syrette::ptr::TransientPtr; use syrette::{declare_default_factory, DIContainer}; @@ -12,9 +13,9 @@ use crate::ninja::Ninja; declare_default_factory!(Shuriken); -pub fn bootstrap() -> Result> +pub fn bootstrap() -> Result, Box> { - let mut di_container: DIContainer = DIContainer::new(); + let mut di_container = DIContainer::new(); di_container.bind::().to::()?; -- cgit v1.2.3-18-g5258