diff --git a/src/compression_engine.rs b/src/compression_engine.rs index f7d6dce..0bc7380 100755 --- a/src/compression_engine.rs +++ b/src/compression_engine.rs @@ -1,8 +1,7 @@ -use anyhow::{Context, Result, anyhow}; +use anyhow::Result; use std::io; use std::io::{Read, Write}; use std::path::PathBuf; -use std::process::{Command, Stdio}; use strum::IntoEnumIterator; use log::*; diff --git a/src/modes/info.rs b/src/modes/info.rs index 5df29b9..0ec0c35 100644 --- a/src/modes/info.rs +++ b/src/modes/info.rs @@ -6,7 +6,7 @@ use clap::error::ErrorKind; use std::path::PathBuf; use std::str::FromStr; -use crate::compression_engine::{CompressionType, get_compression_engine}; +use crate::compression_engine::CompressionType; use crate::db::{get_item, get_item_last, get_item_matching}; use crate::modes::common::get_format_box_chars_no_border_line_separator; use chrono::prelude::*;