1
0
Fork 0
mirror of https://codeberg.org/icewind/vbsp.git synced 2026-06-03 18:54:05 +02:00

use forked release of zip

This commit is contained in:
Robin Appelman 2023-11-11 22:41:33 +01:00
commit 1042648059
2 changed files with 6 additions and 5 deletions

7
Cargo.lock generated
View file

@ -334,7 +334,7 @@ dependencies = [
"static_assertions",
"thiserror",
"vbsp-derive",
"zip",
"zip-lzma",
]
[[package]]
@ -348,9 +348,10 @@ dependencies = [
]
[[package]]
name = "zip"
name = "zip-lzma"
version = "0.6.3"
source = "git+https://github.com/icewind1991/zip?branch=lzma-decompression#67239e847f4fbe3a5b847707ee3228ac370388f5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b480cb31fccfb2786565c0e0712865fd6f1ea0ea850c50316f643c3948196e63"
dependencies = [
"byteorder 1.4.3",
"crc32fast",

View file

@ -20,9 +20,9 @@ lzma-rs = "0.2.0"
binrw = "0.10.0"
static_assertions = "1.1.0"
num_enum = "0.5.7"
vbsp-derive = { path = "derive", version = "*" }
vbsp-derive = { path = "derive", version = "0.1.0" }
cgmath = "0.18.0"
zip = { version = "0.6.3", git = "https://github.com/icewind1991/zip", branch = "lzma-decompression", default-features = false, features = ["lzma"] }
zip = { package = "zip-lzma", version = "0.6.3", default-features = false, features = ["lzma"] }
[dev-dependencies]
obj = "0.10"