1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![doc(html_root_url = "https://docs.rs/nest/1.0.0")]

//! # nest
//!
//! `nest` is a library to use your filesystem as a nested data store.
//!
//! The [`Store`](struct.Store.html) docs are a good place to get started.

#[macro_use]
extern crate lazy_static;

pub use self::error::Error;
pub use self::schema::Schema;
pub use self::source::{FileSource, Source};
pub use self::store::Store;
pub use self::value::Value;

mod error;
mod path;
mod schema;
pub mod source;
mod store;
mod value;