1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! This crate is part of [Sophia],
//! an [RDF] and [Linked Data] toolkit in Rust.
//!
//! Parser and serializer for the [RDF/XML] concrete syntax,
//! based on [`rio_xml`].
//!
//! [Sophia]: https://docs.rs/sophia/latest/sophia/
//! [RDF]: https://www.w3.org/TR/rdf-primer/
//! [Linked Data]: http://linkeddata.org/
//! [RDF/XML]: https://www.w3.org/TR/rdf-syntax-grammar/

pub mod parser;

pub mod serializer;