toolu-orm-connection 0.1.1

Connection pooling and driver adapters (libsql, rusqlite, Postgres) for toolu-orm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Postgres backend: PgDatabase (connection pool) and PgConnection.
//!
//! Uses deadpool-postgres for connection pooling with tokio-postgres as the
//! async driver. TLS via tokio-postgres-rustls matching the project's existing
//! rustls usage.

mod connection;
mod pool;
mod tls;

pub use connection::{PgConnection, PgTransaction};
pub use pool::{PgConfig, PgDatabase};