modified: Cargo.lock

modified:   Cargo.toml
	new file:   src/7zip/7za.dll
	new file:   src/7zip/7za.exe
	new file:   src/7zip/7zxa.dll
	modified:   src/lib.rs
This commit is contained in:
Michael Wain 2025-03-18 17:45:15 +03:00
parent c64d5948c5
commit d5ac96d2c9
6 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -353,7 +353,7 @@ dependencies = [
[[package]]
name = "nicotine"
version = "0.1.8"
version = "0.1.9"
dependencies = [
"walkdir",
"zip",

View File

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

BIN
src/7zip/7za.dll Normal file

Binary file not shown.

BIN
src/7zip/7za.exe Normal file

Binary file not shown.

BIN
src/7zip/7zxa.dll Normal file

Binary file not shown.

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(())
}