Runtime dependency injection library for Rust
[](https://crates.io/crates/dill) [](https://github.com/sergiimk/dill-rs/actions) [](https://deps.rs/repo/github/sergiimk/dill-rs)
```rust /////////////////////////////////////////
// Define interfaces in traits trait A: Send + Sync { fn test(&self) -> String; }
// Implement traits to define components
struct AImpl {
// Auto-inject dependencies (also supports by-value)
b: Arc
impl A for AImpl { fn test(&self) -> String { format!("aimpl::{}", self.b.test()) } }
/////////////////////////////////////////
trait B: Send + Sync { fn test(&self) -> String; }
struct BImpl;
impl B for BImpl { fn test(&self) -> String { "bimpl".to_owned() } }
/////////////////////////////////////////
// Register interfaces and bind them to implementations
let cat = CatalogBuilder::new()
.add::
// Get objects and have their deps satisfied automatically
let inst = cat.get::
trybuild
tests (see https://youtu.be/geovSK3wMB8?t=956)add_*
with generic add<B: Into<Builder>>
Clone
typesNothing framework-specific
Create instance (ctor, new(), and external types)
Get existing instance if exists (scope)
Separate builder from the scope, catalog, Arc stuff