Skip to main content

rs_auth_postgres/
lib.rs

1//! PostgreSQL persistence layer for rs-auth.
2//!
3//! Implements the store traits from [`rs_auth_core`] using [`sqlx`] with a
4//! PostgreSQL backend. Also provides an embedded migration runner.
5
6mod account;
7pub mod db;
8pub mod migrate;
9mod session;
10mod user;
11mod verification;
12
13pub use db::AuthDb;
14pub use migrate::run_migrations;