kglite 0.12.13

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
//! General-purpose RDF loader (Turtle / N-Triples / N-Quads / TriG).
//!
//! Parses RDF documents via the `oxttl` family and folds triples into
//! the in-memory property graph: subjects become nodes, `rdf:type` sets
//! the node type, literal objects become typed properties, and resource
//! objects become edges. Predicate / type IRIs are CURIE-compacted by
//! default (`http://xmlns.com/foaf/0.1/knows` → `foaf:knows`).
//!
//! Phase 1 targets the Default (in-memory) backend only; mapped / disk
//! support is a later phase. Gated behind the `rdf` Cargo feature so the
//! bare crate pulls no RDF parser.
//!
//! Split:
//! - [`interner`] — dense IRI → `u32` interning for the fold accumulator.
//! - [`curie`] — namespace → prefix CURIE compaction.
//! - [`fold`] — typed-literal → [`crate::datatypes::values::Value`] coercion.
//! - [`loader`] — `load_rdf` entry point + the triple-fold driver.

mod curie;
mod fold;
mod interner;
mod loader;

pub use loader::{load_rdf, RdfConfig, RdfStats};