mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-13 21:26:27 +02:00
16 lines
299 B
Rust
16 lines
299 B
Rust
|
/*!
|
||
|
An implementation of `grep-matcher`'s `Matcher` trait for
|
||
|
[PCRE2](https://www.pcre.org/).
|
||
|
*/
|
||
|
|
||
|
#![deny(missing_docs)]
|
||
|
|
||
|
extern crate grep_matcher;
|
||
|
extern crate pcre2;
|
||
|
|
||
|
pub use error::{Error, ErrorKind};
|
||
|
pub use matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder};
|
||
|
|
||
|
mod error;
|
||
|
mod matcher;
|