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 functions and async constructors.
- Manual and automatic registration (thanks to inventory).
- Easy binding of trait implementations and trait objects.
- Distinguishing different instances with types and names.
- Generics (but must be monomorphized and manually registered)
More complex example
use ;
use ;
// Register async function and specify name
async
// Register async constructor and specify name
;
// Bind the implementation of the `Debug` trait and the trait object of the `Debug` trait
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.