runique 2.0.1

A Django-inspired web framework for Rust with ORM, templates, and comprehensive security middleware
Documentation
1
2
3
4
5
6
7
8
9
10
//! Security middlewares — allowed hosts, CSP, CSRF, rate limiting.
pub mod allowed_hosts;
pub mod csp;
pub mod csrf;
pub mod rate_limit;

pub use allowed_hosts::*;
pub use csp::*;
pub use csrf::*;
pub use rate_limit::*;