aboutsummaryrefslogtreecommitdiff
path: root/macros
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-09-17 16:12:45 +0200
committerHampusM <hampus@hampusmat.com>2022-09-17 16:12:45 +0200
commit8651f84f205da7a89f2fc7333d1dd8de0d80a22b (patch)
treea178427abb442e897d21f654db71cc8135236920 /macros
parentc1e682c25c24be3174d44ceb95b0537c38299d0c (diff)
refactor!: make async DI container be used inside of a Arc
BREAKING CHANGE: The async DI container is to be used inside of a Arc & it also no longer implements Default
Diffstat (limited to 'macros')
-rw-r--r--macros/src/injectable_impl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/src/injectable_impl.rs b/macros/src/injectable_impl.rs
index af1fa68..bf5c96c 100644
--- a/macros/src/injectable_impl.rs
+++ b/macros/src/injectable_impl.rs
@@ -91,7 +91,7 @@ impl InjectableImpl
impl #generics syrette::interfaces::async_injectable::AsyncInjectable for #self_type
{
async fn resolve(
- #di_container_var: &syrette::async_di_container::AsyncDIContainer,
+ #di_container_var: &std::sync::Arc<syrette::async_di_container::AsyncDIContainer>,
mut #dependency_history_var: Vec<&'static str>,
) -> Result<
syrette::ptr::TransientPtr<Self>,