diff --git a/src/compression.rs b/src/compression.rs index c661c95..8ac2fad 100755 --- a/src/compression.rs +++ b/src/compression.rs @@ -1,3 +1,4 @@ +use std::io; use anyhow::{anyhow, Context, Result}; use std::io::{Read, Write}; use std::path::PathBuf; diff --git a/src/modes/get.rs b/src/modes/get.rs index 948fce3..b0cd557 100644 --- a/src/modes/get.rs +++ b/src/modes/get.rs @@ -1,7 +1,7 @@ use anyhow::anyhow; use crate::compression::CompressionType; -use std::io::BufWriter; +// use std::io::BufWriter; // Removed unused import use clap::Command; use std::path::PathBuf; use std::str::FromStr;