summary refs log tree commit diff stats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2021-02-13 00:33:52 -0300
committerSoniEx2 <endermoneymod@gmail.com>2021-02-13 00:33:52 -0300
commit81a1d3ca72d9f28605bd22687ab20cb61a4ceb1b (patch)
tree2547d228ab706ace221e51b74a6baf52be625330 /src/lib.rs
parentabaee464936a821568c3fdbd52b9aadd3adb6d0f (diff)
Complete the VM, for the most part
Some things are still untested. Needs more tests.
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)]