minisql/proto/src/lib.rs
2023-12-31 19:04:40 +01:00

8 lines
272 B
Rust

//! # PostgreSQL Protocol
//! Low-level PostgreSQL protocol implementation for the server version 16, protocol version 3.0.
//! Includes server and client side handshake with no password authentication.
pub mod handshake;
pub mod message;
pub mod reader;
pub mod writer;