fix: optimize imports
This commit is contained in:
parent
11317787f6
commit
7c2f637184
7 changed files with 18 additions and 12 deletions
|
@ -1,13 +1,15 @@
|
|||
use crate::tmpfs::TempDir;
|
||||
use errors::{BinError, BuildError, InstallError};
|
||||
use std::process::exit;
|
||||
|
||||
use log::{debug, error, info, trace};
|
||||
|
||||
use errors::{BinError, BuildError, InstallError};
|
||||
use manifest::Manifest;
|
||||
use pkgfile::PKGFile;
|
||||
|
||||
use std::process::exit;
|
||||
use crate::CONFIG;
|
||||
use crate::package::identifier::{PackageIdentifier, PackageLocator};
|
||||
use crate::package::Package;
|
||||
use crate::tmpfs::TempDir;
|
||||
use crate::types::fetch::TryFetch;
|
||||
|
||||
pub mod errors;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue