vantus 0.3.0

Macro-first async Rust backend framework with explicit composition, typed extraction, and hardened HTTP defaults.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod context;
mod handler;
mod path;
mod route;
mod router;

pub use context::{Identity, RequestContext};
pub use handler::{Handler, HandlerFuture, HandlerResult};
pub(crate) use path::normalize_request_path;
pub use route::{RequestBodyKind, RouteContract, RouteDefinition};
pub use router::{RouteRegistrar, RouteResolution, Router};