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 oauth_state;
10mod session;
11mod user;
12mod verification;
13
14pub use db::AuthDb;
15pub use migrate::run_migrations;