aboutsummaryrefslogtreecommitdiff
path: root/macros/src/lib.rs
AgeCommit message (Expand)Author
2023-12-22refactor: mock Dependency struct impl instead of IDependencyHEADmasterHampusM
2023-12-22feat: add support for async constructorsHampusM
2023-10-04refactor!: remove factory & declare_default_factory macrosHampusM
2023-10-01refactor: remove impossible unwrap in injectable macroHampusM
2023-09-30style: shorten lines exceeding 90 in width in injectable macroHampusM
2023-09-30refactor: remove unnecessary cloning of impl generics & self typeHampusM
2023-09-27fix: set injectable macro dummies directly after parsing inputHampusM
2023-09-27docs: clarify named macro documentationHampusM
2023-09-27refactor: remove unnecessary doc(cfg) attrs on private modulesHampusM
2023-08-16chore!: remove the factory macro async flagHampusM
2023-08-16docs: add missing TransientPtr import to factory macro exampleHampusM
2023-08-15fix!: make the factory macro not change its inputHampusM
2023-08-13feat: add internal logging for macrosHampusM
2023-08-05fix: change terminology in injectable macro async flag errorHampusM
2023-08-05docs: improve injectable macro docsHampusM
2023-08-04refactor!: rename the async flag of the declare_interface macroHampusM
2023-08-03docs: remove panics sections from macrosHampusM
2023-08-03docs: move the injectable macro example sectionHampusM
2023-08-03feat: add constructor name flag to injectable macroHampusM
2023-01-30fix: add missing dummy async injectable implHampusM
2023-01-30feat: improve macro error messagesHampusM
2023-01-12refactor: allow manual let else in macros crateHampusM
2023-01-12refactor: add deny unsafe code in macros crateHampusM
2022-11-19refactor: reorganize non-public API itemsHampusM
2022-11-08fix: allow for concrete type interfaces to be marked asyncHampusM
2022-11-06fix: allow declaring a concrete type as it's own interfaceHampusM
2022-10-25refactor: improve injectable macro error messagesHampusM
2022-10-23fix: remove unused Rust feature flagHampusM
2022-10-15refactor: improve internals of macros & add unit testsHampusM
2022-10-03refactor: remove relying on Rust nightly for better handling of featuresHampusM
2022-10-02refactor: improve management of feature specific itemsHampusM
2022-10-01chore: remove repetition of allowing clippy::module_name_repetitionsHampusM
2022-10-01docs: improve item links in the injectable macroHampusM
2022-10-01docs: fix unresolved link to TransientPtrHampusM
2022-09-24feat: add bind async default factories to async DI containerHampusM
2022-09-24refactor!: remove repetition of declaring factory interfacesHampusM
2022-09-24refactor: reorganize modules in the macros crateHampusM
2022-09-23fix: prevent problems caused by non send + sync traitsHampusM
2022-09-18feat: add binding async factories to async DI containerHampusM
2022-09-18feat: add factory macro async flagHampusM
2022-09-18refactor: add put factory return types in TransientPtr automaticallyHampusM
2022-09-18docs: fix ambiguous link to the factory macroHampusM
2022-09-17feat!: allow factories to access async DI containerHampusM
2022-09-17feat!: allow factories access to DI containerHampusM
2022-09-02refactor!: remove braces from expected injectable macro inputHampusM
2022-09-02refactor: rename the factory macro flag 'async' to 'threadsafe'HampusM
2022-09-02refactor: remove unused import of ItemTraitHampusM
2022-08-31feat: add a threadsafe flag to the declare_default_factory macroHampusM
2022-08-31fix: add missing semicolon in the factory macroHampusM
2022-08-29feat: implement async functionalityHampusM