brainos-storage 0.5.0

SQLite and HNSW vector storage layer for Brain OS
Documentation
//! # Brain Storage
//!
//! Storage abstraction layer providing:
//! - SQLite for episodic memory, semantic facts, procedures, and FTS5 index
//! - RuVector for vector-based semantic memory (HNSW)
//! - Encryption at rest (AES-256-GCM + Argon2id)
//! - Schema migrations

pub mod dlq;
#[cfg(feature = "encryption")]
pub mod encryption;
pub mod ruvector;
pub mod sqlite;

pub use dlq::SqliteDlq;
#[cfg(feature = "encryption")]
pub use encryption::Encryptor;
pub use ruvector::{HnswConfig, RuVectorStore, VectorResult};
pub use sqlite::{ExportedEpisode, ExportedFact, ScheduledIntent, SqlitePool};