reinhardt-web 0.1.0-rc.28

A full-stack API framework for Rust, inspired by Django and Django REST Framework
Documentation
//! Dependency injection module.
//!
//! This module provides FastAPI-style dependency injection system
//! and parameter extraction.
//!
//! # Examples
//!
//! ```rust,ignore
//! use reinhardt::di::{Injected, Injectable};
//! ```

#[cfg(feature = "di")]
pub use reinhardt_di::*;

// Re-export reinhardt-di types for macro compatibility
#[cfg(feature = "di")]
#[allow(deprecated)]
pub use reinhardt_di::{
	DiError, DiResult, Injectable, Injected, InjectionContext, InjectionMetadata, OptionalInjected,
};