lib.rs (ripgrep-12.1.1) | : | lib.rs (ripgrep-13.0.0) | ||
---|---|---|---|---|
/*! | /*! | |||
An implementation of `grep-matcher`'s `Matcher` trait for | An implementation of `grep-matcher`'s `Matcher` trait for | |||
[PCRE2](https://www.pcre.org/). | [PCRE2](https://www.pcre.org/). | |||
*/ | */ | |||
#![deny(missing_docs)] | #![deny(missing_docs)] | |||
extern crate grep_matcher; | pub use crate::error::{Error, ErrorKind}; | |||
extern crate pcre2; | pub use crate::matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder}; | |||
pub use error::{Error, ErrorKind}; | ||||
pub use matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder}; | ||||
pub use pcre2::{is_jit_available, version}; | pub use pcre2::{is_jit_available, version}; | |||
mod error; | mod error; | |||
mod matcher; | mod matcher; | |||
End of changes. 1 change blocks. | ||||
5 lines changed or deleted | 2 lines changed or added |