summaryrefslogtreecommitdiffstats
path: root/grep-pcre2/src/lib.rs
blob: d7cb01563261e031a04a9795dea460fabfe52f98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*!
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};
pub use pcre2::{is_jit_available, version};

mod error;
mod matcher;