moadim 1.7.2

Loop engine for AI agents — routines over REST, MCP, and a built-in web UI
1
2
3
4
5
6
7
8
/// Middleware that rejects browser-borne cross-origin requests (DNS rebinding, CSRF-style abuse).
pub mod host_validation;
/// Middleware that logs request method, path, status, and latency.
pub mod logger;
/// Middleware that adds defense-in-depth security response headers.
pub mod security_headers;
/// Middleware that bounds REST API handler time with a per-request deadline.
pub mod timeout;