summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2017-02-07 17:15:23 -0800
committerGitHub <noreply@github.com>2017-02-07 17:15:23 -0800
commit788a08756ab88b48c117257685ad7b93b8fab641 (patch)
treebf7eac8cabb2244bff0fa18f2c3c78c5c3daba35 /src/lib.rs
parent09b030a2b2b536d2af1c70bda560f6c0d6a36d41 (diff)
parentf82ca02c15b675ba889143aa7f7cd3c69e3f1810 (diff)
Merge pull request #6 from tmccombs/yaml
Add support for YAML
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 89ffc69..073815f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -50,6 +50,9 @@ extern crate toml;
#[cfg(feature = "json")]
extern crate serde_json;
+#[cfg(feature = "yaml")]
+extern crate yaml_rust;
+
mod value;
mod source;
mod file;