oxirs-ttl 0.2.4

Turtle-family RDF parser and serializer for OxiRS - ported from Oxigraph
Documentation
1
2
3
4
5
6
7
8
//! Standalone RDF parsers operating on lightweight [`crate::writer::RdfTerm`] types
//!
//! These parsers do not depend on `oxirs-core` model types and can be used in
//! isolation for simple N-Triples / N-Quads parsing tasks.

pub mod ntriples_parser;

pub use ntriples_parser::{NQuad, NQuadsLiteParser, NTriple, NTriplesLiteParser, ParseError};