From 990aa475abf66ecdfa7e3ede23d5eae90d11ae9b Mon Sep 17 00:00:00 2001 From: John Turner Date: Sun, 26 Oct 2025 01:52:50 -0400 Subject: [PATCH] fix lints --- src/atom/mod.rs | 2 +- src/depend/parsers.rs | 2 +- tests/depend.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/atom/mod.rs b/src/atom/mod.rs index 4ff9039..1f9c351 100644 --- a/src/atom/mod.rs +++ b/src/atom/mod.rs @@ -1,5 +1,5 @@ use core::{ - fmt::{self, write}, + fmt::{self}, option::Option, }; diff --git a/src/depend/parsers.rs b/src/depend/parsers.rs index 4c23b02..637d6f9 100644 --- a/src/depend/parsers.rs +++ b/src/depend/parsers.rs @@ -1,4 +1,4 @@ -use mon::{DebugTracer, Parser, ParserResult, input::InputIter, mode::Emit, tag, whitespace1}; +use mon::{Parser, ParserResult, input::InputIter, tag, whitespace1}; use crate::{ atom, diff --git a/tests/depend.rs b/tests/depend.rs index f459f77..1843570 100644 --- a/tests/depend.rs +++ b/tests/depend.rs @@ -1,5 +1,5 @@ use gentoo_utils::depend; -use mon::{eof, input::InputIter, tag, Parser}; +use mon::{Parser, eof, input::InputIter, tag}; use std::fs; #[test]