Cargo clippy
This commit is contained in:
parent
98e2380981
commit
0e6ebd621f
@ -2,16 +2,15 @@ use std::collections::HashMap;
|
|||||||
|
|
||||||
use nom::{
|
use nom::{
|
||||||
branch::alt,
|
branch::alt,
|
||||||
bytes::complete::{escaped_transform, tag, take_until},
|
bytes::complete::{escaped_transform, tag},
|
||||||
character::{
|
character::{
|
||||||
complete::char as ccchar,
|
complete::{alphanumeric1, digit1, i64 as cci64},
|
||||||
complete::{alpha1, alphanumeric1, digit1, i64 as cci64},
|
|
||||||
complete::{anychar, u64 as ccu64},
|
complete::{anychar, u64 as ccu64},
|
||||||
streaming::none_of,
|
streaming::none_of,
|
||||||
},
|
},
|
||||||
combinator::{map, not, value, verify},
|
combinator::{map, not, value, verify},
|
||||||
multi::separated_list0,
|
multi::separated_list0,
|
||||||
sequence::{delimited, terminated, tuple},
|
sequence::{delimited, terminated},
|
||||||
IResult,
|
IResult,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user