heliosdb-nano 3.26.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
10
11
12
//! WASM Edge Runtime Module
//!
//! Full-featured WebAssembly runtime for running HeliosDB-Lite
//! in browser and edge environments (Cloudflare Workers, Deno Deploy, etc.)

pub mod runtime;
pub mod bindings;
pub mod storage;
pub mod api;

pub use runtime::*;
pub use bindings::*;