yadi 0.1.0

Yet Another Dependency Injection framework for writing applications with Rust programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod builder;
mod container;
mod entry;
mod factory;
mod injectable;

pub use builder::*;
pub use container::*;
pub(crate) use entry::*;
pub(crate) use factory::*;
pub use injectable::*;