PageRenderTime 36ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/crates/grep/src/lib.rs

https://github.com/BurntSushi/ripgrep
Rust | 23 lines | 8 code | 2 blank | 13 comment | 0 complexity | d1f6e3aa16bfb436329dc04702003e01 MD5 | raw file
Possible License(s): MIT, Unlicense
  1. /*!
  2. ripgrep, as a library.
  3. This library is intended to provide a high level facade to the crates that
  4. make up ripgrep's core searching routines. However, there is no high level
  5. documentation available yet guiding users on how to fit all of the pieces
  6. together.
  7. Every public API item in the constituent crates is documented, but examples
  8. are sparse.
  9. A cookbook and a guide are planned.
  10. */
  11. #![deny(missing_docs)]
  12. pub extern crate grep_cli as cli;
  13. pub extern crate grep_matcher as matcher;
  14. #[cfg(feature = "pcre2")]
  15. pub extern crate grep_pcre2 as pcre2;
  16. pub extern crate grep_printer as printer;
  17. pub extern crate grep_regex as regex;
  18. pub extern crate grep_searcher as searcher;