Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
692 B
18 lines
692 B
#![doc = include_str!("../README.md")]
|
|
#![doc(test(attr(deny(warnings))))]
|
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
#![doc(html_favicon_url = "https://raw.githubusercontent.com/oxigraph/oxigraph/main/logo.svg")]
|
|
#![doc(html_logo_url = "https://raw.githubusercontent.com/oxigraph/oxigraph/main/logo.svg")]
|
|
|
|
mod error;
|
|
mod parser;
|
|
mod serializer;
|
|
mod utils;
|
|
|
|
pub use error::{RdfXmlParseError, RdfXmlSyntaxError};
|
|
#[cfg(feature = "async-tokio")]
|
|
pub use parser::FromTokioAsyncReadRdfXmlReader;
|
|
pub use parser::{FromReadRdfXmlReader, RdfXmlParser};
|
|
#[cfg(feature = "async-tokio")]
|
|
pub use serializer::ToTokioAsyncWriteRdfXmlWriter;
|
|
pub use serializer::{RdfXmlSerializer, ToWriteRdfXmlWriter};
|
|
|