v0.4.0
0.4.0 - 2025-03-26
🚀 Features
- Singleton created via
#[derive]
now supportdyn
types- BREAKING:
dyn
types are now automatically wrapped in aBox
:Box<dyn T>
,
which requires all users to now retrieve singletons using the new type:registry.get_singleton::<Box<dyn T>>
- BREAKING:
🐛 Bug Fixes
- Remove unused tests
- Fix singleton behavior with derive macro