reinhardt-web 0.2.0

A full-stack API framework for Rust, inspired by Django and Django REST Framework
1
2
3
4
5
6
7
8
9
10
11
12
//! Dependency injection and parameter extraction re-exports.

#[cfg(feature = "di")]
pub use reinhardt_di::scope::{RequestScope, Scope, SingletonScope};
#[cfg(feature = "di")]
pub use reinhardt_di::{
	Depends, DependsBuilder, DependsOption, DependsResult, DiError, DiResult, Injectable,
	InjectionContext, InjectionContextBuilder, InjectionMetadata, RequestContext,
};

#[cfg(any(feature = "minimal", feature = "standard", feature = "di"))]
pub use reinhardt_di::params::{Body, Cookie, Header, Json, Path, Query};