oxirs-core 0.3.1

Core RDF and SPARQL functionality for OxiRS - native Rust implementation with zero dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! JSON-LD context processing — thin facade module.
//!
//! The implementation lives in cohesive sibling modules:
//! - [`context_types`](super::context_types): core data types ([`JsonNode`],
//!   [`JsonLdContext`], [`JsonLdTermDefinition`], [`JsonLdContextProcessor`],
//!   [`JsonLdLoadDocumentOptions`], [`JsonLdRemoteDocument`]).
//! - [`context_core`](super::context_core): the [Context Processing
//!   Algorithm](https://www.w3.org/TR/json-ld-api/#algorithm), term-definition
//!   creation, IRI expansion and JSON event conversion helpers.
//!
//! External code importing from this module receives all public items via
//! the re-exports below.

pub use super::context_core::*;
pub use super::context_types::*;