//! Minimal `tokio-postgres` database adapter for RustAuth.
//!
//! This crate is useful when the application already owns a single
//! `tokio_postgres::Client` or wants the smallest async Postgres adapter.
//! Production applications that need pooling should prefer
//! `rustauth-deadpool-postgres`.
pub use TokioPostgresAdapter;
pub use TokioPostgresConnection;
pub use TokioPostgresRateLimitStore;
pub use ;