aboutsummaryrefslogtreecommitdiff
path: root/examples/with-3rd-party/bootstrap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-3rd-party/bootstrap.rs')
-rw-r--r--examples/with-3rd-party/bootstrap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/with-3rd-party/bootstrap.rs b/examples/with-3rd-party/bootstrap.rs
index c5512c4..4fea754 100644
--- a/examples/with-3rd-party/bootstrap.rs
+++ b/examples/with-3rd-party/bootstrap.rs
@@ -18,7 +18,7 @@ pub fn bootstrap() -> Result<Rc<DIContainer>, Box<dyn Error>>
di_container
.bind::<Shuriken>()
- .to_default_factory(&|_| TransientPtr::new(Shuriken::new()))?;
+ .to_default_factory(&|_| Box::new(|| TransientPtr::new(Shuriken::new())))?;
Ok(di_container)
}