diff options
author | HampusM <hampus@hampusmat.com> | 2022-10-29 14:38:51 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-10-29 14:40:11 +0200 |
commit | aa548ded39c7ba1927019c748c359523b21d59e8 (patch) | |
tree | 779d104f85009dd831e6af6e7a523258a1ab5be9 /src/lib.rs | |
parent | da94fd3b7dd2265f10957d0f5276881beb057d82 (diff) |
refactor!: add dependency history type
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
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -9,6 +9,7 @@ //! //! Syrette is a collection of utilities useful for performing dependency injection. +pub mod dependency_history; pub mod di_container; pub mod errors; pub mod interfaces; @@ -32,9 +33,6 @@ pub use syrette_macros::{declare_interface, injectable, named}; pub mod castable_factory; #[doc(hidden)] -pub mod dependency_trace; - -#[doc(hidden)] pub mod libs; // Private |