auth-framework 0.5.0-rc19

A comprehensive, production-ready authentication and authorization framework for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Utility modules for the AuthFramework.

pub mod breach_check;
pub mod crypto;
pub mod password;
pub mod rate_limit;
pub mod string;
pub mod validation;

pub use crypto::*;
pub use password::*;
pub use rate_limit::*;
pub use string::*;
pub use validation::*;