heliosdb-nano 4.6.2

PostgreSQL-compatible embedded database with TDE + ZKE encryption, HNSW vector search, Product Quantization, git-like branching, time-travel queries, materialized views, row-level security, and 50+ enterprise features
1
2
3
4
5
6
7
8
9
//! Protocol implementations
//!
//! This module provides wire protocol implementations for client connectivity.

pub mod mysql;
pub mod postgres;

// Re-export commonly used items
pub use postgres::{AuthManager, AuthMethod, PgServer, PgServerBuilder, PgServerConfig};