oxirs-core 0.2.3

Core RDF and SPARQL functionality for OxiRS - native Rust implementation with zero dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
//! RDF dataset utilities for OxiRS.
//!
//! - [`diff`]: Compute diffs between RDF datasets and apply patches.

pub mod blank_node_allocator;
pub mod diff;
pub mod namespace_registry;

pub use diff::{DatasetDiff, DatasetPatch, DiffStats, RdfDiffEngine, Triple as DiffTriple};
pub use namespace_registry::{NamespaceEntry, NamespaceRegistry, DEFAULT_PREFIXES};