auth_kit 0.1.2

Toolkit for Authentication and Authorization in Rust
Documentation
1
2
3
4
5
6
7
8
/// Handles authentication logic such as register, login, and reset_password.
pub mod auth_n;

/// Handles authorization strategies such as RBAC, ABAC, and SBA.
pub mod auth_z;

/// Provides utilities for flexible scope matching and parsing.
pub mod scope;