lora-database 0.5.1

LoraDB — embeddable in-memory graph database with Cypher query support.
Documentation

In-memory Lora database — the database-facing orchestration layer.

lora-database owns the parse → analyze → compile → execute pipeline and exposes a single [Database] entry point that transports (HTTP, benches, examples, embedded callers) can drive without knowing about the underlying crates.

Quick start

use lora_database::Database;

let db = Database::in_memory();
db.execute("CREATE (:User {name: 'alice'})", None).unwrap();