modified: Cargo.toml

This commit is contained in:
Michael Wain 2025-03-18 18:08:17 +03:00
parent c5e132a1f0
commit 0eb01da5d1
3 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.13"
version = "0.1.14"
dependencies = [
"zip-extract",
]

View File

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

View File

@ -81,7 +81,7 @@ fn zip_dir(
.arg("-tzip")
.arg("-mx=0")
.arg(writer)
.arg([src_dir.to_str().unwrap(), "/", "*"].concat())
.arg([src_dir.to_str().unwrap(), "\\", "*"].concat())
.spawn()?;
a.wait()?;
Ok(())