heliosdb-nano 3.23.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
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Supabase-Compatible REST API
//!
//! Drop-in compatible REST API that follows Supabase/PostgREST conventions
//! for easy migration from Supabase to HeliosDB-Lite.

pub mod postgrest;
pub mod auth;
pub mod storage;
pub mod realtime;
pub mod routes;

pub use postgrest::*;
pub use routes::*;