spg-sqlx 7.18.0

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
//! 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;
pub(crate) mod decimal;
mod float;
mod int;
#[cfg(feature = "json")]
mod json;
mod text;
pub(crate) mod uuid;
pub(crate) mod vector;