1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#![warn(missing_docs)]
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy))]
//! 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.
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate nom;
extern crate rand;
extern crate regex;

mod constants;
pub mod error;
pub mod graph;
pub mod graphs;
pub mod io;
pub mod iter;
pub mod namespaces;
pub mod ontology_adapter;
#[macro_use]
pub mod resource;
/// Ontology mapping for rdf: and rdfs:
///
/// This code was generated by `examples/generate_code`.
pub mod ontology;

pub use error::Result;

#[cfg(unstable)]
mod unstable;