mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-03-17 20:28:03 +02:00
This crate is only a shim over a bunch of other crates. I'm not sure that there's anything to add to each of the `pub extern` items. So instead of just writing fluff, I removed the lint. Fixes #2516
22 lines
656 B
Rust
22 lines
656 B
Rust
/*!
|
|
ripgrep, as a library.
|
|
|
|
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.
|
|
|
|
Every public API item in the constituent crates is documented, but examples
|
|
are sparse.
|
|
|
|
A cookbook and a guide are planned.
|
|
*/
|
|
|
|
pub extern crate grep_cli as cli;
|
|
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;
|