summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2018-07-02 15:33:38 -0700
committerRyan Leckey <leckey.ryan@gmail.com>2018-07-02 15:33:38 -0700
commitcbb9ef88ea6f6452614dd8bbffce7203b1358a55 (patch)
treefd4f67587f9a36c517a3a3f1ff7ef727697d5fef /src/lib.rs
parentbbc78d85610dec79aa4af4dd360131c7880efb5f (diff)
Run rustfmt (nightly)
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/lib.rs b/src/lib.rs
index f18d937..9561cf1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -51,19 +51,19 @@ extern crate serde_hjson;
#[cfg(feature = "ini")]
extern crate ini;
-mod error;
-mod value;
+mod config;
mod de;
-mod ser;
+mod env;
+mod error;
+mod file;
mod path;
+mod ser;
mod source;
-mod config;
-mod file;
-mod env;
+mod value;
pub use config::Config;
+pub use env::Environment;
pub use error::ConfigError;
-pub use value::Value;
-pub use source::Source;
pub use file::{File, FileFormat};
-pub use env::Environment;
+pub use source::Source;
+pub use value::Value;