authbox 0.1.3

A lightweight, modular authentication framework for Rust built around traits, async support, and pluggable component
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod auth_user;
pub mod blacklist_token;
pub mod password_hasher;
pub mod token_manager;
pub mod user_store;

/// re-exports
pub use auth_user::AuthUser;
pub use blacklist_token::BlacklistableClaims;
pub use password_hasher::PasswordHasher;
pub use token_manager::{TokenBlacklistStore, TokenManager};
pub use user_store::UserStore;