rs-auth-postgres 0.1.0

Postgres persistence and migrations for rs-auth.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! PostgreSQL persistence layer for rs-auth.
//!
//! Implements the store traits from [`rs_auth_core`] using [`sqlx`] with a
//! PostgreSQL backend. Also provides an embedded migration runner.

mod account;
pub mod db;
pub mod migrate;
mod session;
mod user;
mod verification;

pub use db::AuthDb;
pub use migrate::run_migrations;