tideway 0.7.17

A batteries-included Rust web framework built on Axum for building SaaS applications quickly
Documentation
1
2
3
4
5
6
7
8
9
10
//! Storage traits for authentication.
//!
//! These traits define the interface for storing and retrieving authentication data.
//! Implement them for your database layer (SeaORM, SQLx, etc.).

pub mod token;
pub mod user;

pub use token::{MfaTokenStore, RefreshTokenStore};
pub use user::{PasswordResetStore, UserCreator, UserStore, VerificationStore};