rustapi-core 0.1.537

The core engine of the RustAPI framework. Provides the hyper-based HTTP server, router, extraction logic, and foundational traits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod builder;
mod config;
mod dispatcher;
mod health;
mod helpers;
mod openapi;
mod production;
mod routing;
mod run;
mod types;

#[cfg(test)]
mod tests;

pub use config::RustApiConfig;
pub use dispatcher::RequestDispatcher;
pub use production::ProductionDefaultsConfig;
pub use types::RustApi;