dipper 0.5.3

An out-of-the-box modular dependency injection web application framework.
Documentation
mod manifest;

// Modules
#[macro_use]
mod trait_alias;
mod component;
mod module;
mod parameters;
mod provider;
mod routable;
mod router;
// Re-export proc macros

pub(crate) use ::dipper_macros::Provider;
pub use ::dipper_macros::{Component, dyn_modules};
// Reexport OnceCell to support lazy components
#[doc(hidden)]
#[cfg(feature = "thread_safe")]
pub use once_cell::sync::OnceCell;
#[doc(hidden)]
#[cfg(not(feature = "thread_safe"))]
pub use once_cell::unsync::OnceCell;

// Expose a flat module structure
pub use self::component::*;
pub(crate) use self::provider::*;
pub use self::{manifest::*, module::*, routable::*, router::*};