Rudi
Rudi - an out-of-the-box dependency injection framework for Rust.
use ;
// Register `fn(cx) -> A { A }` as the constructor for `A`
;
;
// Register `fn(cx) -> B { B(cx.resolve::<A>()) }` as the constructor for `B`
// Register `fn(cx) -> () { run(cx.resolve::<B>()) }` as the constructor for `()`
Features
- Two lifetimes:
singletonandtransient. - Async constructor.
- Manual and automatic registration (thanks to inventory).
- Easy binding of trait objects.
- Distinguishing different instances with types and names.
- Support for generics (but not for automatic registration).
More complex example
use ;
use ;
// Register async function and specify name
async
// Register async constructor and specify name
;
// Bind `Bar` to `Rc<dyn Debug>`
async
async
More examples can be found in the examples and tests directories.
Credits
- Koin: This project's API design and test cases were inspired by Koin.
- inventory: This project uses inventory to implement automatic registration, making Rust's automatic registration very simple.
Contributing
Thanks for your help improving the project! We are so happy to have you!
License
Licensed under either of
- Apache License, Version 2.0,(LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.