diff --git a/Cargo.lock b/Cargo.lock index 70adb3c..f05ad83 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -208,7 +208,7 @@ dependencies = [ [[package]] name = "rawcopy-rs" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "normpath", diff --git a/Cargo.toml b/Cargo.toml index bb97052..dc1e3a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rawcopy-rs" -version = "0.1.2" +version = "0.1.3" edition = "2021" authors = ["码魂 "] description = "RawCopy crate provides the capability to use \"Volume Shadow Copy technology\" for file copying in Rust.Primarily aimed at replicating files that cannot be directly copied due to being in use." diff --git a/src/lib.rs b/src/lib.rs index f8864ca..53c5670 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -83,7 +83,7 @@ pub fn rawcopy(file_path: &str, save_path: &str) -> Result<()> { }; for ele in components { - println!("{}", ele); + // println!("{}", ele); cd(ele, &mut info)?; }