aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-08-17refactor: remove useless Sealed impl for DependencyHistoryHampusM
2023-08-17refactor: use derive for DependencyHistory Default implHampusM
2023-08-17feat: add DependencyHistory methods to public APIHampusM
2023-08-17docs: add existance reason to DependencyHistory docsHampusM
2023-08-17build: change repository in Cargo.toml to the Github repo urlHampusM
2023-08-17docs: remove the 'unbound' exampleHampusM
This was not at all a useful example
2023-08-16test: make the prevent-circular example an integration testHampusM
2023-08-16feat: make SomePtr implement DebugHampusM
2023-08-16chore: fix warnings when only the async feature enabledHampusM
2023-08-16chore!: remove the factory macro async flagHampusM
BREAKING CHANGE: The factory macro's async flag has been removed
2023-08-16docs: add missing TransientPtr import to factory macro exampleHampusM
2023-08-15fix!: make the factory macro not change its inputHampusM
BREAKING CHANGE: The factory macro no longer - Changes the return type to be inside of a TransientPtr - Adds Send + Sync bounds when the threadsafe or the async flag is set - Changes the return type be inside of a BoxFuture when the async flag is set
2023-08-15ci: remove lints-nightly jobHampusM
Having to constantly fix new lints is annoying as hell
2023-08-13feat: add internal logging for macrosHampusM
2023-08-05refactor!: remove IDependencyHistoryHampusM
BREAKING CHANGE: IDependencyHistory has been removed as part of an effort to simplify the API. This affects IDIContainer, DIContainer, IAsyncDIContainer, AsyncDIContainer, Injectable, AsyncInjectable, BindingBuilder, AsyncBindingBuilder, BindingScopeConfigurator, BindingWhenConfigurator, AsyncBindingScopeConfigurator, AsyncBindingWhenConfigurator and DependencyHistory
2023-08-05fix: change terminology in injectable macro async flag errorHampusM
2023-08-05docs: improve injectable macro docsHampusM
2023-08-04refactor!: remove SomeThreadsafePtr & move variants to SomePtrHampusM
BREAKING CHANGE: SomeThreadsafePtr has been removed and it's variants have been moved to SomePtr
2023-08-04refactor!: rename the async flag of the declare_interface macroHampusM
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
2023-08-04refactor: rename CastFromSync to CastFromArcHampusM
2023-08-04refactor!: remove async_closure macro from APIHampusM
BREAKING CHANGE: The async_closure macro has been removed. This is because it is completely out of scope for this crate
2023-08-03docs: remove panics sections from macrosHampusM
2023-08-03docs: move the injectable macro example sectionHampusM
2023-08-03test: add & improve MacroFlag unit testsHampusM
2023-08-03feat: add constructor name flag to injectable macroHampusM
2023-08-02docs: fix wrong quotes in binding configuratorsHampusM
2023-08-02test: clean up create_caster_fn_ident unit testHampusM
2023-08-02test: clean up DeclareDefaultFactoryMacroArgs unit testsHampusM
2023-08-02perf: reduce number of allocations in SynPathExt::to_stringHampusM
2023-08-02build: add Cargo.lock to keep predicates-tree dependency oldHampusM
2023-08-02build: improve the fix for the predicates-tree MSRV changeHampusM
Dependents won't be prevented from using a newer version of predicates-tree now
2023-08-01test: clean up FactoryMacroArgs unit testsHampusM
2023-08-01test: clean up binding configurator unit testsHampusM
2023-08-01test: clean up DeclareInterfaceArgs unit testsHampusM
2023-08-01test: remove unused std::error::Error importHampusM
2023-08-01test: remove vec macro usages in IteratorExt unit testsHampusM
2023-08-01test: clean up InjectableMacroArgs unit testsHampusM
2023-08-01test: remove Result return value of can_build_dependenciesHampusM
2023-08-01refactor: remove calls to default on unit structsHampusM
2023-08-01build: add temporary fix for predicates-tree MSRV changeHampusM
The MSRV of predicates-tree (a dependency of mockall) was changed to 1.64.0 and released as a patch release, making this project not buildable using Rust 1.63.0. This commit fixes that by making sure only the latest version of predicates-tree with a 1.63.0 MSRV is used
2023-08-01build: use mockall 0.11.4HampusM
2023-08-01test: fix create_single_get_dep_method_call unit testsHampusM
2023-07-31refactor!: remove SomeThreadsafePtrErrorHampusM
BREAKING CHANGE: SomeThreadsafePtrError has been removed and SomePtrError is now used by both the methods of SomePtr and of SomeThreadsafePtr
2023-01-31fix: remove unwrap from generated implementations of InjectableHampusM
2023-01-30fix: add missing dummy async injectable implHampusM
2023-01-30feat: improve macro error messagesHampusM
2023-01-19refactor: remove unnecessary must_use attributesHampusM
2023-01-19refactor!: make binding builder & configurator methods take self ownershipHampusM
BREAKING CHANGE: The methods of BindingBuilder, AsyncBuilder, BindingScopeConfigurator, AsyncBindingScopeConfigurator, BindingWhenConfigurator, AsyncBindingWhenConfigurator now take ownership of self
2023-01-13refactor: put syn_path_to_string in a extension traitHampusM
2023-01-12refactor: fix Clippy lint in threadsafe castable factoryHampusM