From 5b0c6a52022e67a2d9cee251b3d08b9cb2b5f6cb Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 9 Oct 2022 12:05:24 +0200 Subject: refactor!: reorganize DI containers BREAKING CHANGE: DIContainer, AsyncDIContainer & the binding structs have been relocated --- src/di_container/mod.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/di_container/mod.rs (limited to 'src/di_container/mod.rs') diff --git a/src/di_container/mod.rs b/src/di_container/mod.rs new file mode 100644 index 0000000..bf2c7a0 --- /dev/null +++ b/src/di_container/mod.rs @@ -0,0 +1,9 @@ +//! Dependency injection container types. + +#[cfg(feature = "async")] +#[cfg_attr(doc_cfg, doc(cfg(feature = "async")))] +pub mod asynchronous; + +pub mod blocking; + +pub(crate) mod binding_map; -- cgit v1.2.3-18-g5258