fix: add missing Read and Write trait imports

This commit is contained in:
Andrew Phillips (aider)
2025-05-06 11:53:27 -03:00
parent b32d49446f
commit 1456c45bd3
3 changed files with 3 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ use std::path::PathBuf;
use std::env;
use std::fs;
use std::os::unix::fs::PermissionsExt;
use std::io::{Read, Write};
use log::*;
use crate::compression::CompressionEngine;