mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-08-01 04:32:01 -07:00
This adds the top-level is_jit_available and version free functions from the underlying pcre2 crate, and also forwards the max_jit_stack_size option.
17 lines
343 B
Rust
17 lines
343 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};
|
|
pub use pcre2::{is_jit_available, version};
|
|
|
|
mod error;
|
|
mod matcher;
|