summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorRyan Leckey <ryan@launchbadge.com>2017-06-13 15:57:21 -0700
committerRyan Leckey <ryan@launchbadge.com>2017-06-13 15:57:21 -0700
commit3c3d1e860eded0027f1efe3bb25e0fa6fa8b8940 (patch)
treedc27dc47ebf2537b3f21fe10ae23de2efe824b53 /src/lib.rs
parentab0d8cb9aa107c8d561f3c188e6cbf472a7df23b (diff)
Add JSON
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 5d06364..3ea87d6 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -30,6 +30,9 @@ extern crate nom;
#[cfg(feature = "toml")]
extern crate toml;
+#[cfg(feature = "json")]
+extern crate serde_json;
+
mod error;
mod value;
mod de;