summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorRyan Leckey <ryan@launchbadge.com>2017-06-01 23:22:04 -0700
committerRyan Leckey <ryan@launchbadge.com>2017-06-01 23:22:04 -0700
commitbfc44c331a77d8c341c076e72df5ed0b56fbd422 (patch)
treec757723957be6b880d1e0d8d26ae2b1c9c606ed2 /src/lib.rs
parent4357840e95f3646494ddeea4aae12425dfab2db8 (diff)
Move things around and get some tests in place
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs25
1 files changed, 25 insertions, 0 deletions
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};