From 33e0d1ca8b930d67329d475d1eb1009a52c57bce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?cel=20=F0=9F=8C=B8?= Date: Tue, 25 Jun 2024 23:25:41 +0100 Subject: [PATCH] remove unused imports --- src/parser.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/parser.rs b/src/parser.rs index 0e2bb90..266becc 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -1,13 +1,13 @@ use std::char; use nom::{ - branch::{alt, permutation}, - bytes::streaming::{is_a, is_not, tag, tag_no_case, take, take_till, take_until, take_while}, + branch::alt, + bytes::streaming::{is_a, tag, take, take_while}, character::{ complete::one_of, - streaming::{alpha1, char, digit1, none_of, satisfy}, + streaming::{char, none_of, satisfy}, }, - combinator::{cond, map, map_parser, map_res, not, opt, peek, recognize, value, verify}, + combinator::{map, not, opt, peek, recognize, value}, error::{Error, ErrorKind}, multi::{many0, many1, many_till}, sequence::{delimited, pair, preceded, separated_pair, terminated, tuple},