wonderbox 0.1.0

A minimalistic IoC library.
Documentation
# Wonderbox

A minimalistic [IoC](https://en.wikipedia.org/wiki/Inversion_of_control) library.

## Examples

```rust
use wonderbox::{register, Container};
use wonderbox_codegen::resolve_dependencies;

trait Foo {}

#[derive(Debug, Default)]
struct FooImpl {
    stored_string: String,
}

#[resolve_dependencies]
impl FooImpl {
    fn new(stored_string: String) -> Self {
        Self { stored_string }
    }
}

impl Foo for FooImpl {}

#[test]
fn test() {
    let mut container = Container::new();
    container.register_clone("foo".to_string());
    register!(container, FooImpl as Box<dyn Foo>);

    let foo = container.resolve::<Box<dyn Foo>>();
    assert!(foo.is_some())
}

```