docs: handshake documentation

This commit is contained in:
Jindřich Moravec 2023-12-31 18:45:50 +01:00
parent eb8410718d
commit c61b6021db
5 changed files with 28 additions and 3 deletions

View file

@ -1,3 +1,7 @@
//! # PostgreSQL 16 Protocol
//! Low-level PostgreSQL protocol implementation for the 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;