Skip to main content

haystack_core/graph/
mod.rs

1// EntityGraph layer — in-memory entity graph with bitmap indexing,
2// bidirectional ref adjacency, query planning, change tracking,
3// and thread-safe concurrent access.
4
5pub mod adjacency;
6pub mod bitmap;
7pub mod changelog;
8pub mod entity_graph;
9pub mod query_planner;
10pub mod shared;
11
12pub use changelog::{DiffOp, GraphDiff};
13pub use entity_graph::{EntityGraph, GraphError};
14pub use shared::SharedGraph;