rjango 0.1.1

A full-stack Rust backend framework inspired by Django
Documentation
pub mod cache;
pub mod clickjacking;
pub mod common;
pub mod csp;
pub mod csrf;
pub mod gzip;
pub mod hooks;
pub mod http_middleware;
pub mod locale;
pub mod security;

pub use cache::CacheMiddlewareLayer;
pub use clickjacking::XFrameOptionsMiddlewareLayer;
pub use common::CommonMiddlewareLayer;
pub use csp::CspMiddlewareLayer;
pub use csrf::CsrfMiddlewareLayer;
pub use gzip::CompressionLayer;
pub use locale::LocaleMiddlewareLayer;
pub use security::SecurityMiddlewareLayer;