injectable-rs 0.1.0

A compile-time dependency injection framework for Rust using extractor-based DI
Documentation
1
2
3
4
5
6
7
8
9
10
//! Integration tests for injectable — multi-service scenarios.
//!
//! Each module tests a specific cross-cutting concern with a realistic
//! service graph (multiple services, dependencies between them).

mod bind_macro;
mod factory_ctx;
mod generic_types;
#[cfg(feature = "axum")]
mod multi_service_web_app;