summaryrefslogtreecommitdiffstats
path: root/src/util/parser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/parser.rs')
-rw-r--r--src/util/parser.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/util/parser.rs b/src/util/parser.rs
index 4f8ee17..80557f0 100644
--- a/src/util/parser.rs
+++ b/src/util/parser.rs
@@ -1,7 +1,5 @@
-use pom::*;
-use pom::parser::Parser as PomParser;
use pom::parser::*;
-use pom::char_class::hex_digit;
+use pom::parser::Parser as PomParser;
pub fn numbers<'a>() -> PomParser<'a, u8, Vec<u8>> {
one_of(b"0123456789").repeat(1..)