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.
30 lines
1.0 KiB
30 lines
1.0 KiB
#![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 blank_node;
|
|
pub mod dataset;
|
|
pub mod graph;
|
|
mod interning;
|
|
mod literal;
|
|
mod named_node;
|
|
mod parser;
|
|
mod triple;
|
|
mod variable;
|
|
pub mod vocab;
|
|
|
|
pub use crate::blank_node::{BlankNode, BlankNodeIdParseError, BlankNodeRef};
|
|
pub use crate::dataset::Dataset;
|
|
pub use crate::graph::Graph;
|
|
pub use crate::literal::{Literal, LiteralRef};
|
|
pub use crate::named_node::{NamedNode, NamedNodeRef};
|
|
pub use crate::parser::TermParseError;
|
|
pub use crate::triple::{
|
|
GraphName, GraphNameRef, NamedOrBlankNode, NamedOrBlankNodeRef, Quad, QuadRef, Subject,
|
|
SubjectRef, Term, TermRef, Triple, TripleRef,
|
|
};
|
|
pub use crate::variable::{Variable, VariableNameParseError, VariableRef};
|
|
pub use oxilangtag::LanguageTagParseError;
|
|
pub use oxiri::IriParseError;
|
|
|