2016-08-24 18:33:35 -04:00
|
|
|
/*!
|
2018-08-03 17:26:22 -04:00
|
|
|
ripgrep, as a library.
|
2016-06-20 16:53:48 -04:00
|
|
|
|
2018-08-03 17:26:22 -04:00
|
|
|
This library is intended to provide a high level facade to the crates that
|
|
|
|
make up ripgrep's core searching routines. However, there is no high level
|
|
|
|
documentation available yet guiding users on how to fit all of the pieces
|
|
|
|
together.
|
2016-06-20 16:53:48 -04:00
|
|
|
|
2018-08-03 17:26:22 -04:00
|
|
|
Every public API item in the constituent crates is documented, but examples
|
|
|
|
are sparse.
|
2016-06-20 16:53:48 -04:00
|
|
|
|
2018-08-03 17:26:22 -04:00
|
|
|
A cookbook and a guide are planned.
|
|
|
|
*/
|
2016-06-20 16:53:48 -04:00
|
|
|
|
2018-08-29 20:53:52 -04:00
|
|
|
pub extern crate grep_cli as cli;
|
2018-08-03 17:26:22 -04:00
|
|
|
pub extern crate grep_matcher as matcher;
|
|
|
|
#[cfg(feature = "pcre2")]
|
|
|
|
pub extern crate grep_pcre2 as pcre2;
|
|
|
|
pub extern crate grep_printer as printer;
|
|
|
|
pub extern crate grep_regex as regex;
|
|
|
|
pub extern crate grep_searcher as searcher;
|