bra0-kg 0.2.0

bra0 Knowledge Graph core — RDF transformations (sophia) + KgStore trait (NextGraph-First)
Documentation
//! # bra0-kg — Knowledge Graph Core
//!
//! NextGraph-First architecture:
//! - **Transformations** (always available): parse, serialize, C14N, isomorphism, OWL extraction
//! - **KgStore trait**: abstracts persistence (NextGraph CRDT primary, oxigraph standalone fallback)
//!
//! Compilation targets:
//! - `wasm32-unknown-unknown` (primary — browser, NextGraph iframe)
//! - native (secondary — Tauri standalone, topo CLI)
//!
//! Built on sophia 0.9.0 (Champin, W3C/INRIA).

// === Transformations (stateless, pure functions) ===
pub mod parse;
pub mod serialize;
pub mod c14n;
pub mod isomorphism;
pub mod owl;

// === Persistence abstraction ===
pub mod store;

// === Store implementations (feature-gated) ===
#[cfg(feature = "standalone")]
pub mod store_oxigraph;

// === Cascade orchestrator (NS-5) ===
pub mod cascade;

// === NER (feature-gated) ===
#[cfg(feature = "ner")]
pub mod ner;

// === Social Perception (TP-2) ===
pub mod social;