fix: optimize imports

This commit is contained in:
Strix 2023-10-14 22:39:48 +02:00
parent 11317787f6
commit 7c2f637184
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
7 changed files with 18 additions and 12 deletions

View file

@ -1,8 +1,11 @@
use std::fmt::Display;
use std::path::Path;
use log::{info, trace};
use log::info;
use reqwest::blocking::get;
use pkgfile::PKGFile;
use crate::package::identifier::PackageIdentifier;
use crate::types::fetch::TryFetch;