summaryrefslogtreecommitdiffstats
path: root/crates/pcre2/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/pcre2/src/lib.rs')
-rw-r--r--crates/pcre2/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/pcre2/src/lib.rs b/crates/pcre2/src/lib.rs
index d7cb0156..37fa04fc 100644
--- a/crates/pcre2/src/lib.rs
+++ b/crates/pcre2/src/lib.rs
@@ -8,8 +8,8 @@ An implementation of `grep-matcher`'s `Matcher` trait for
extern crate grep_matcher;
extern crate pcre2;
-pub use error::{Error, ErrorKind};
-pub use matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder};
+pub use crate::error::{Error, ErrorKind};
+pub use crate::matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder};
pub use pcre2::{is_jit_available, version};
mod error;