aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
AgeCommit message (Collapse)Author
2022-11-07fix: make factories work again after Rust nightly-2022-11-07HampusM
2022-10-29refactor!: add dependency history typeHampusM
BREAKING CHANGE: Binding builders & configurators now take dependency history type arguments, the DetectedCircular variant of InjectableError now contains a dependency history field & the injectable traits take dependency history instead of a Vec
2022-10-25refactor: add Debug implementations for castable factoriesHampusM
2022-10-23refactor!: reduce DI container couplingHampusM
BREAKING CHANGE: You now have to import the DI containers's interfaces to use the DI containers's methods
2022-10-09refactor!: reorganize DI containersHampusM
BREAKING CHANGE: DIContainer, AsyncDIContainer & the binding structs have been relocated
2022-10-03refactor: remove relying on Rust nightly for better handling of featuresHampusM
2022-10-02refactor: improve management of feature specific itemsHampusM
2022-10-01refactor: stop using the async_trait macro for AsyncInjectableHampusM
2022-10-01chore: remove repetition of allowing clippy::module_name_repetitionsHampusM
2022-09-24feat: add bind async default factories to async DI containerHampusM
2022-09-24refactor: remove IFactory from public APIHampusM
2022-09-17refactor!: make async DI container be used inside of a ArcHampusM
BREAKING CHANGE: The async DI container is to be used inside of a Arc & it also no longer implements Default
2022-09-17refactor!: make DI container be used inside of a RcHampusM
BREAKING CHANGE: The DI container is to be used inside of a Rc & it also no longer implements Default
2022-08-29feat: implement async functionalityHampusM
2022-08-27refactor!: limit FactoryPtr & AnyFactory to the factory featureHampusM
BREAKING CHANGE: FactoryPtr has been limited to the factory feature
2022-08-21refactor!: change errors to be more saneHampusM
BREAKING CHANGE: Major improvements have been made to error types and the error_stack crate is no longer used
2022-08-21docs: fix IFactory example use statementHampusM
2022-08-02feat: add detection and prevention of circular dependenciesHampusM
2022-08-02refactor: hide AnyFactory from docsHampusM
2022-08-01docs: add factory feature noticesHampusM
2022-08-01docs: add doc comments & deny missing docsHampusM
2022-07-31refactor!: rename InterfacePtr to TransientPtrHampusM
BREAKING CHANGE: InterfacePtr has been renamed to TransientPtr
2022-07-22refactor: make factories an optional featureHampusM
2022-07-20refactor: reorganize folder hierarchyHampusM