hora-graph-core 1.0.0

Bio-inspired embedded knowledge graph engine — pure Rust, zero runtime deps
Documentation
1
2
3
4
5
6
7
8
9
10
//! Storage backends for the Hora graph engine (memory, embedded, sqlite, postgres).

pub mod embedded;
pub mod format;
pub mod memory;
#[cfg(feature = "postgres")]
pub mod pg;
#[cfg(feature = "sqlite")]
pub mod sqlite;
pub mod traits;