Skip to content

Commit ae871eb

Browse files
committed
Fix warnings in new rust versions
1 parent 248f967 commit ae871eb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/parser.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ use std::iter::Peekable;
88
use std::slice::Iter;
99
use std::hash::Hash;
1010
use std::hash::Hasher;
11-
use std::ascii::AsciiExt;
1211
use std::str::FromStr;
1312
use std::process::exit;
1413

14+
#[allow(unused_imports)] #[allow(deprecated)]
15+
use std::ascii::AsciiExt;
16+
1517
use std::collections::HashMap;
1618
use std::collections::hash_map::Entry;
1719
use std::collections::HashSet;

0 commit comments

Comments
 (0)