rusticx-postgres 1.0.0

PostgreSQL adapter for the Rusticx multi-database ORM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! PostgreSQL adapter for Rusticx ORM.
//!
//! Backed by [`sqlx`] with a connection pool. Supports `RETURNING *` for
//! insert, `TIMESTAMPTZ`, `UUID`, `JSONB`, and all standard SQL types.
//!
//! Enable with feature flag `postgres`:
//! ```toml
//! rusticx = { version = "0.1", features = ["postgres"] }
//! ```

mod convert;
pub mod adapter;

pub use adapter::{PostgresAdapter, PostgresConfig};