kglite 0.16.1

Pure-Rust embedded Cypher knowledge graph engine with in-memory, mmap, and disk storage, and agent-facing schema introspection
Documentation
1
2
3
4
5
6
7
8
9
//! Datatypes shared across the kglite engine.
//!
//! The PyO3 conversion helpers (`py_in`, `py_out`,
//! `type_conversions`) live in the kglite-py wrapper crate — they
//! only make sense at the Rust ↔ Python boundary.
pub mod values;

pub use values::DataFrame;
pub use values::Value;