diff options
author | HampusM <hampus@hampusmat.com> | 2023-08-04 17:38:00 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-08-04 17:38:00 +0200 |
commit | b4ddc1e626fbd11d784b442d246ddc5f54c35b51 (patch) | |
tree | b8f87926310b8490fce701d17dcd0a612067034d /macros/src/factory/build_declare_interfaces.rs | |
parent | e0216c7cbf008f2867ef92955abce28dba27f5e3 (diff) |
refactor!: rename the async flag of the declare_interface macro
BREAKING CHANGE: The flag 'async' of the declare_interface macro has been renamed to 'threadsafe_sharable'. The reason being that the name 'async' was an outright lie. The new name describes exactly what the flag enables
Diffstat (limited to 'macros/src/factory/build_declare_interfaces.rs')
-rw-r--r-- | macros/src/factory/build_declare_interfaces.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/src/factory/build_declare_interfaces.rs b/macros/src/factory/build_declare_interfaces.rs index 038d29d..e4fc01b 100644 --- a/macros/src/factory/build_declare_interfaces.rs +++ b/macros/src/factory/build_declare_interfaces.rs @@ -18,7 +18,7 @@ pub fn build_declare_factory_interfaces( (std::sync::Arc<syrette::AsyncDIContainer>,), #factory_interface >, - async = true + threadsafe_sharable = true ); syrette::declare_interface!( @@ -26,7 +26,7 @@ pub fn build_declare_factory_interfaces( (std::sync::Arc<syrette::AsyncDIContainer>,), #factory_interface > -> syrette::private::any_factory::AnyThreadsafeFactory, - async = true + threadsafe_sharable = true ); } } else { |