modified: Cargo.toml

This commit is contained in:
Michael Wain 2025-03-18 16:52:18 +03:00
parent 165fe6c7ec
commit e444cb55e9
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -323,7 +323,7 @@ dependencies = [
[[package]]
name = "nicotine"
version = "0.1.4"
version = "0.1.5"
dependencies = [
"walkdir",
"zip",

View File

@ -1,6 +1,6 @@
[package]
name = "nicotine"
version = "0.1.4"
version = "0.1.5"
edition = "2024"
description = "A small rust crate for patching mojang's Authlib"
authors = ["alterwain"]

View File

@ -62,7 +62,7 @@ pub fn patch_jar(input_jar: &str, output_jar: &str, endpoint: &str) -> Result<()
zip_dir(&target_dir, &target_dir, jar)?;
//std::fs::remove_dir_all(&target_dir)?;
std::fs::remove_dir_all(&target_dir)?;
Ok(())
}