tantivy-cli 0.24.0

Command line interface for Tantivy, a search engine library.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod bench;
mod index;
mod inspect;
mod merge;
mod new;
mod search;
mod serve;

pub use self::bench::run_bench_cli;
pub use self::index::run_index_cli;
pub use self::inspect::run_inspect_cli;
pub use self::merge::run_merge_cli;
pub use self::new::run_new_cli;
pub use self::search::run_search_cli;
pub use self::serve::run_serve_cli;