From 6e1a6dc0c749ffb03e3f03c4befec5bf246aea55 Mon Sep 17 00:00:00 2001 From: Asuka Minato Date: Tue, 23 Jul 2024 02:30:29 +0900 Subject: [PATCH] fix missing import --- roogle-engine/src/query/parse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roogle-engine/src/query/parse.rs b/roogle-engine/src/query/parse.rs index a1b646f..88c0760 100644 --- a/roogle-engine/src/query/parse.rs +++ b/roogle-engine/src/query/parse.rs @@ -2,7 +2,7 @@ use nom::{ branch::alt, bytes::complete::{tag, take_while1}, character::complete::char, - character::complete::{alpha1, alphanumeric1, multispace0}, + character::complete::{alpha1, alphanumeric1, multispace0, multispace1}, combinator::{eof, fail, map, not, opt, recognize, value}, error::{ContextError, ParseError}, multi::{many0, separated_list0},