qail-pg 0.27.2

Fastest async PostgreSQL driver - AST to wire protocol, optional io_uring on Linux
Documentation
//! PostgreSQL Connection
//!
//! Low-level TCP connection with wire protocol handling.
//! This is Layer 3 (async I/O).
//!
//! Sub-modules:
//! - `types` — structs, enums, constants
//! - `connect` — connection establishment (plain, TLS, mTLS, Unix, GSSENC)
//! - `startup` — startup handshake, auth, prepared statement management
//! - `helpers` — free functions: metrics, GSS token, MD5, SCRAM, Drop impl

mod connect;
mod helpers;
mod startup;
#[cfg(test)]
mod tests;
pub(crate) mod types;

pub(crate) use helpers::parse_affected_rows;
pub(crate) use types::CANCEL_REQUEST_CODE;
#[cfg(test)]
pub(crate) use types::StatementCache;
pub use types::{PgConnection, TlsConfig};