summaryrefslogtreecommitdiffstats
path: root/grep-regex/src/ast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'grep-regex/src/ast.rs')
-rw-r--r--grep-regex/src/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/grep-regex/src/ast.rs b/grep-regex/src/ast.rs
index 4e6067ee..a4979ded 100644
--- a/grep-regex/src/ast.rs
+++ b/grep-regex/src/ast.rs
@@ -1,5 +1,5 @@
-use regex_syntax::ast::{self, Ast};
use regex_syntax::ast::parse::Parser;
+use regex_syntax::ast::{self, Ast};
/// The results of analyzing AST of a regular expression (e.g., for supporting
/// smart case).