//! A crate for working with RDF
//! By implementing `graph::Graph`, one can make any data source available as RDF.
//! Ontology wrappers can be generated from RDF Schema.
//!
//! This crate is in early development.
extern crate lazy_static;
extern crate nom;
extern crate rand;
extern crate regex;
/// Ontology mapping for rdf: and rdfs:
///
/// This code was generated by `examples/generate_code`.
pub use Result;