From 0e4d9dbd867fede3f9843e31d55d19e92fc834fe Mon Sep 17 00:00:00 2001 From: gigirassy Date: Wed, 19 Aug 2026 01:00:23 +0200 Subject: [PATCH] silence warnings --- src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 297f850..ffebcf9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,7 +2,6 @@ use std::{ collections::{HashSet, VecDeque}, fs, io::Read, - sync::Arc, time::Duration, }; @@ -11,7 +10,7 @@ use clap::{Parser, ValueEnum}; use flate2::read::GzDecoder; use futures::stream::{self, StreamExt}; use mimalloc::MiMalloc; -use reqwest::{header, Client}; +use reqwest::{Client}; use roxmltree::Document; use tokio::time::timeout; use url::Url;