oauth2-passkey 0.6.1

OAuth2 and Passkey authentication library for Rust web applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Storage layer for login history

mod config;
mod mysql;
mod postgres;
mod sqlite;
mod store_type;

// Re-export only the specific items needed
pub(super) use config::O2P_LOGIN_HISTORY_RETENTION_DAYS;
pub(crate) use store_type::LoginHistoryStore;