//! Redland-shaped RDF parsing and serialization.
//!
//! Oxiland 0.2 provides safe [`Parser`] and [`Serializer`] facades with closed
//! [`Syntax`] discovery (ADR-008). Streaming parse output and progressive
//! model loading follow ADR-007.
//!
//! Oxigraph primitives remain available under [`primitives`] for advanced use;
//! they are not evidence for Redland-shaped facade completeness.
pub use Syntax;
pub use SourceLocation;
pub use ;
pub use Serializer;
/// Direct Oxigraph I/O primitives.
///
/// Prefer [`Parser`] and [`Serializer`] for Redland-oriented workflows.