spg-sqlx 7.16.2

sqlx 0.8 Database driver for spg-embedded — let in-process callers use sqlx::query / query_as / pool.begin against an in-process SPG without a TCP listener. Backs mailrs's drop-in PgPool → SpgPool swap (gap-eval E1).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! v7.16.0 — `Type` + `Encode` + `Decode` for the basic scalar
//! surface. mailrs's most-used columns are INT / BIGINT / TEXT /
//! BOOLEAN / BYTEA / TIMESTAMPTZ / JSONB — this module ships
//! the first five; the date/time + JSON families land in
//! follow-up commits.

mod array;
mod bool;
mod bytes;
#[cfg(feature = "chrono")]
mod chrono;
mod float;
mod int;
#[cfg(feature = "json")]
mod json;
mod text;