kglite 0.10.21

Pure-Rust knowledge graph engine — Cypher pipeline, snapshot/working CoW transactions, columnar/mmap/disk storage backends, optional dataset loaders (SEC EDGAR, Sodir, Wikidata). PyO3 wrappers live in the sibling kglite-py crate (the Python wheel); embeddable directly from any Rust binary without PyO3 in the dep tree.
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;