fastrust 0.3.1

A lightweight API framework built on top of Axum, inspired by FastAPI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Routing and route configuration.
//!
//! This module provides the [`APIRouter`] struct for defining routes and
//! the [`RouteConfig`] struct for configuring route metadata and OpenAPI
//! documentation.

mod route;
mod router;
mod route_config;
mod openapi_converter;

pub use router::APIRouter;
pub use route::Method;
pub use route_config::RouteConfig;