authbox 0.1.5

A lightweight, modular authentication framework for Rust built around traits, async support, and pluggable component
Documentation
1
2
3
4
5
6
7
8
pub mod auth;
pub mod jwt;
pub mod password;

pub use auth::{AuthError, AuthService};
/// re-exorts
pub use jwt::DefaultJwtManager;
pub use password::DefaultHasher;