sqlitegraph 3.0.6

Embedded graph database with full ACID transactions, HNSW vector search, dual backend support, and comprehensive graph algorithms library
Documentation
1
2
3
4
5
6
7
8
mod algo;
mod graph;

pub use algo::{CycleError, Dfs, is_cyclic_directed, tarjan_scc, toposort};
pub use graph::{Direction, EdgeIndex, EdgeRef, NodeIndex, TypedDiGraph};

#[cfg(test)]
mod tests;