oxrdf/
lib.rs

1#![doc = include_str!("../README.md")]
2#![doc(test(attr(deny(warnings))))]
3#![cfg_attr(docsrs, feature(doc_auto_cfg))]
4#![doc(html_favicon_url = "https://raw.githubusercontent.com/oxigraph/oxigraph/main/logo.svg")]
5#![doc(html_logo_url = "https://raw.githubusercontent.com/oxigraph/oxigraph/main/logo.svg")]
6
7mod blank_node;
8pub mod dataset;
9pub mod graph;
10mod interning;
11mod literal;
12mod named_node;
13mod parser;
14mod triple;
15mod variable;
16pub mod vocab;
17
18pub use crate::blank_node::{BlankNode, BlankNodeIdParseError, BlankNodeRef};
19pub use crate::dataset::Dataset;
20pub use crate::graph::Graph;
21pub use crate::literal::{Literal, LiteralRef};
22pub use crate::named_node::{NamedNode, NamedNodeRef};
23pub use crate::parser::TermParseError;
24pub use crate::triple::{
25    GraphName, GraphNameRef, NamedOrBlankNode, NamedOrBlankNodeRef, Quad, QuadRef, Subject,
26    SubjectRef, Term, TermRef, Triple, TripleRef, TryFromTermError,
27};
28pub use crate::variable::{Variable, VariableNameParseError, VariableRef};
29pub use oxilangtag::LanguageTagParseError;
30pub use oxiri::IriParseError;