remove unused imports

This commit is contained in:
cel 🌸 2024-06-25 23:25:41 +01:00
parent 1fb575b5ca
commit 33e0d1ca8b
1 changed files with 4 additions and 4 deletions

View File

@ -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},