//! Postgres wire protocol implementation
//!
//! This module implements the minimal subset of the Postgres wire protocol
//! needed for fraiseql-wire:
//!
//! * Startup and authentication
//! * Simple Query protocol
//! * Result streaming (`RowDescription`, `DataRow`)
//! * Error handling
//!
//! Explicitly NOT supported:
//! * Extended Query protocol (prepared statements)
//! * COPY protocol
//! * Transactions
//! * Multi-statement queries
pub use decode_message;
pub use encode_message;
pub use ;