From 81a1d3ca72d9f28605bd22687ab20cb61a4ceb1b Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Sat, 13 Feb 2021 00:33:52 -0300 Subject: Complete the VM, for the most part Some things are still untested. Needs more tests. --- src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/lib.rs') 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)] -- cgit 1.4.1