summary refs log tree commit diff stats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index cbd32b2..099b268 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -18,7 +18,10 @@
 #![warn(rust_2018_idioms)]
 #![cfg_attr(not(feature = "stable"), feature(label_break_value))]
 
-extern crate boolinator;
+//! Datafu is a more-or-less simple query language of sorts. It was primarily
+//! designed for dealing with object trees parsed from configuration files,
+//! but can also be used with JSON APIs and whatnot.
+
 extern crate regex;
 
 #[cfg(test)]