kglite 0.10.26

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
10
11
12
13
14
15
16
//! Pure-Rust blueprint loader. See `docs/guides/blueprints.md` for the
//! user-facing spec. PyO3 entry is in `src/graph/pyapi/blueprint.rs`.

pub mod build;
pub mod compute;
pub mod csv_loader;
pub mod csv_stream;
pub mod expr;
pub mod filter;
pub mod geometry;
pub mod schema;
pub mod timeseries;
pub mod validation;

pub use build::build;
pub use schema::load_blueprint_file;