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
//! Core domain types for the hora-graph-core knowledge graph engine.
//!
//! This module re-exports [`entity`], [`edge`], [`episode`], [`types`], and [`dedup`]
//! as the foundational building blocks of the graph.

pub mod dedup;
pub mod edge;
pub mod entity;
pub mod episode;
pub mod types;