grep_pcre2/lib.rs
1/*!
2An implementation of `grep-matcher`'s `Matcher` trait for
3[PCRE2](https://www.pcre.org/).
4*/
5
6#![deny(missing_docs)]
7
8pub use pcre2::{is_jit_available, version};
9
10pub use crate::{
11 error::{Error, ErrorKind},
12 matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder},
13};
14
15mod error;
16mod matcher;