heliosdb-nano 3.30.0

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
Documentation
1
2
3
4
5
6
7
8
9
//! Protocol implementations
//!
//! This module provides wire protocol implementations for client connectivity.

pub mod postgres;
pub mod mysql;

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