feat: Introduce the QueryBuilder struct

This commit is contained in:
Clément Renault
2018-11-27 19:11:33 +01:00
parent b636e5fe57
commit 9b58ffe2d9
6 changed files with 159 additions and 75 deletions

View File

@ -3,13 +3,14 @@
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate serde_derive;
pub mod index;
pub mod automaton;
pub mod blob;
pub mod data;
pub mod database;
pub mod index;
pub mod rank;
pub mod vec_read_only;
pub mod automaton;
pub mod tokenizer;
pub mod vec_read_only;
mod common_words;
pub use self::tokenizer::Tokenizer;