rapina 0.8.0

A fast, type-safe web framework for Rust inspired by FastAPI
Documentation
1
2
3
4
5
6
7
8
9
10
// ! OpenAPI specification generation
// !
// ! This module provides automatic OpenAPI 3.0 spec generation
// ! derived from your route definitions

mod endpoint;
mod spec;

pub use endpoint::*;
pub use spec::*;