summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorThayne McCombs <astrothayne@gmail.com>2017-02-03 22:02:48 -0700
committerThayne McCombs <astrothayne@gmail.com>2017-02-03 22:02:48 -0700
commitf82ca02c15b675ba889143aa7f7cd3c69e3f1810 (patch)
treef5448f1473899936eb6ed62b4e7fa34c34d62a69 /src/lib.rs
parent115fe07e2c11aa72e91a5ce9b028ed1c1ff7d806 (diff)
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 5f8957a..bec6189 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -46,6 +46,9 @@ extern crate toml;
#[cfg(feature = "json")]
extern crate serde_json;
+#[cfg(feature = "yaml")]
+extern crate yaml_rust;
+
mod value;
mod source;
mod file;