oxiland 0.10.0

Embedded RDF datasets, SPARQL, persistence, and streaming I/O for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Well-known RDF vocabulary IRIs (curated 0.5 set).

pub mod dc;
pub mod owl;
pub mod rdf;
pub mod rdfs;
pub mod xsd;

pub(crate) fn node(iri: &str) -> oxigraph::model::NamedNode {
    oxigraph::model::NamedNode::new_unchecked(iri)
}