bra0-kg 0.2.3

bra0 Knowledge Graph core — RDF transformations (sophia) + KgStore trait (NextGraph-First)
Documentation

bra0-kg

crates.io docs.rs

Knowledge-graph core: RDF transformations (parse, serialize, canonicalize, OWL 2 RL) over sophia, plus a KgStore trait that abstracts persistence. Targets WebAssembly first, native second.

[dependencies]
bra0-kg = "0.2"
use bra0_kg::parse::parse_turtle;
use bra0_kg::serialize::to_turtle;

let (graph, _count) = parse_turtle("<urn:s> <urn:p> <urn:o> .")?;
let turtle = to_turtle(&graph)?;

Optional features: standalone (oxigraph-backed SPARQL store), wasm, ner.

License

MIT OR Apache-2.0, at your option.