4 个版本 (破坏性)
0.3.0 | 2022年2月15日 |
---|---|
0.2.0 | 2022年2月14日 |
0.1.0 | 2022年2月11日 |
0.0.0 | 2022年2月11日 |
#574 in 配置
23KB
422 行
depcon
Dependency injection container
快速入门
use depcon::prelude::*;
use std::sync::Arc;
// 1. Define your services!
trait Database {}
trait Repository {}
// 2. Define providers, using #[derive(Injectable)].
// Use Arc<dyn Trait> for service dependencies.
#[derive(Injectable)]
struct DatabaseImpl {}
#[derive(Injectable)]
struct RepositoryImpl {
db: Arc<dyn Database>,
}
// 3. Implement services, using #[auto_provide].
#[auto_provide]
impl Database for DatabaseImpl {}
#[auto_provide]
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::<dyn Repository>();
assert!(result.is_ok());
let repository: Arc<dyn Repository> = result.unwrap();
}
依赖项
~0.3–0.8MB
~19K SLoC