From 0f2756536e8fc311119da2af5b4dcc33f41bec6e Mon Sep 17 00:00:00 2001 From: HampusM Date: Wed, 4 Oct 2023 12:51:06 +0200 Subject: refactor!: remove factory & declare_default_factory macros BREAKING CHANGE: The factory and the declare_default_factory macros have been removed. They are no longer needed to use factories --- examples/factory/interfaces/user.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'examples/factory/interfaces') diff --git a/examples/factory/interfaces/user.rs b/examples/factory/interfaces/user.rs index aafd0cb..5a60317 100644 --- a/examples/factory/interfaces/user.rs +++ b/examples/factory/interfaces/user.rs @@ -1,4 +1,3 @@ -use syrette::factory; use syrette::ptr::TransientPtr; pub trait IUser @@ -8,6 +7,5 @@ pub trait IUser fn get_password(&self) -> &'static str; } -#[factory] pub type IUserFactory = dyn Fn(&'static str, &'static str, &'static str) -> TransientPtr; -- cgit v1.2.3-18-g5258