reinhardt-web 0.3.0

A full-stack API framework for Rust, inspired by Django and Django REST Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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, DiError, DiResult, FactoryOutput, Injectable, InjectableKey,
	InjectionContext, InjectionContextBuilder, InjectionMetadata, RequestContext, injectable,
	injectable_key,
};

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