//! Streaming RDF parsing and serialization.
//!
//! Oxiland 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 part of the documented Oxiland stability or compatibility
//! surface.
pub use BomStrippingReader;
pub use Syntax;
pub use SourceLocation;
pub use ;
pub use Serializer;
pub use map_rdf_parse_error;
/// Direct Oxigraph I/O primitives.
///
/// Prefer [`Parser`] and [`Serializer`] for the documented Oxiland workflows.