a3s-boot 0.1.3

Adapter-first modular Rust web framework for A3S inspired by Nest.js
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod cors;
mod csrf;
mod headers;
mod http_methods;
mod rate_limit;

pub use cors::{CorsMiddleware, CorsOptions, CorsPreflightRoute, CorsResponseInterceptor};
pub use csrf::{CsrfGuard, CsrfOptions};
pub use headers::{SecurityHeadersInterceptor, SecurityHeadersOptions};
pub use rate_limit::{
    InMemoryRateLimitProvider, RateLimitDecision, RateLimitGuard, RateLimitOptions,
    RateLimitProvider, RateLimitRequest,
};