From bfc44c331a77d8c341c076e72df5ed0b56fbd422 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Thu, 1 Jun 2017 23:22:04 -0700 Subject: Move things around and get some tests in place --- src/lib.rs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/lib.rs (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..212e621 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,25 @@ +#![allow(dead_code)] +#![allow(unused_imports)] +#![allow(unused_variables)] + +#[macro_use] +extern crate serde; + +extern crate nom; + +#[cfg(feature = "toml")] +extern crate toml; + +mod error; +mod value; +mod de; +mod path; +mod source; +mod config; +mod file; + +pub use config::Config; +pub use error::ConfigError; +pub use value::Value; +pub use source::Source; +pub use file::{File, FileFormat}; -- cgit v1.2.3