#![recursion_limit = "1024"]
#![cfg_attr(feature = "bench-suite", feature(test))]
extern crate chrono;
#[macro_use]
extern crate indradb;
extern crate num_cpus;
extern crate postgres;
extern crate r2d2;
extern crate r2d2_postgres;
extern crate serde_json;
extern crate uuid;
mod datastore;
mod instance;
mod schema;
mod util;
pub use self::datastore::{PostgresDatastore, PostgresTransaction};
#[cfg(feature = "bench-suite")]
full_bench_impl!(instance::datastore());
#[cfg(feature = "test-suite")]
full_test_impl!(instance::datastore());