depcon
Dependency injection container
```rust use depcon::prelude::*; use std::sync::Arc;
// 1. Define your services! trait Database {} trait Repository {}
// 2. Define providers, using #[derive(Injectable)].
// Use Arc
struct DatabaseImpl {}
struct RepositoryImpl {
db: Arc
// 3. Implement services, using #[auto_provide].
impl Database for DatabaseImpl {}
impl Repository for RepositoryImpl {}
// 4. Create your container, and you're off to the races!
fn main() {
let mut container = Container::auto().unwrap();
let result = container.resolve::
assert!(result.is_ok());
let repository: Arc<dyn Repository> = result.unwrap();
} ```