summaryrefslogtreecommitdiffstats
path: root/crates/regex/src/crlf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/regex/src/crlf.rs')
-rw-r--r--crates/regex/src/crlf.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/regex/src/crlf.rs b/crates/regex/src/crlf.rs
index 09e78b9f..45492bdb 100644
--- a/crates/regex/src/crlf.rs
+++ b/crates/regex/src/crlf.rs
@@ -4,9 +4,9 @@ use grep_matcher::{Match, Matcher, NoError};
use regex::bytes::Regex;
use regex_syntax::hir::{self, Hir, HirKind};
-use config::ConfiguredHIR;
-use error::Error;
-use matcher::RegexCaptures;
+use crate::config::ConfiguredHIR;
+use crate::error::Error;
+use crate::matcher::RegexCaptures;
/// A matcher for implementing "word match" semantics.
#[derive(Clone, Debug)]