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.
20 lines
714 B
20 lines
714 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 csv;
|
|
mod error;
|
|
mod format;
|
|
mod json;
|
|
mod parser;
|
|
mod serializer;
|
|
pub mod solution;
|
|
mod xml;
|
|
|
|
pub use crate::error::{ParseError, SyntaxError};
|
|
pub use crate::format::QueryResultsFormat;
|
|
pub use crate::parser::{FromReadQueryResultsReader, FromReadSolutionsReader, QueryResultsParser};
|
|
pub use crate::serializer::{QueryResultsSerializer, ToWriteSolutionsWriter};
|
|
pub use crate::solution::QuerySolution;
|
|
|