8 lines
272 B
Rust
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;
|