This library implements dependency injection container for Rust mimicking the way it is done in other languages and frameworks.
It differs from other popular implementations by providing
a simple way to group factories together using one_of
method.
```rust let mut registry = di::Registry::new();
registry .oneof("values", || -> i32 { 1 }) .withid("a") .insert();
registry .oneof("values", |a: i32| -> i32 { a + 2 }) .witharg("a") .insert();
match registry.compile() {
Ok(container) => {
if let Some(a) = container.get::
Of course, ungrouped dependencies are also available.
Put this in your Cargo.toml
:
toml
[dependencies]
di = "*"
And this in your crate root:
rust
extern crate di;
MIT