pcre2: small polishing

This commit is contained in:
Andrew Gallant
2023-09-25 16:53:03 -04:00
parent 96f01b92a0
commit 798f8981eb
4 changed files with 17 additions and 22 deletions

View File

@@ -5,9 +5,12 @@ An implementation of `grep-matcher`'s `Matcher` trait for
#![deny(missing_docs)]
pub use crate::error::{Error, ErrorKind};
pub use crate::matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder};
pub use pcre2::{is_jit_available, version};
pub use crate::{
error::{Error, ErrorKind},
matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder},
};
mod error;
mod matcher;