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
//! API application builder and server.
//!
//! This module provides the [`APIApp`] struct, which is the main entry point
//! for building and running a fastrust application.

mod builder;
mod openapi;
mod swagger;
mod server;

pub use builder::APIApp;