Merge branch 'master' into oldpr443
This commit is contained in:
commit
8f61ff2451
4 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.1.3](https://github.com/zip-rs/zip2/compare/v1.1.2...v1.1.3) - 2024-04-30
|
||||||
|
|
||||||
|
### <!-- 1 -->🐛 Bug Fixes
|
||||||
|
- Rare bug where find_and_parse would give up prematurely on detecting a false end-of-CDR header
|
||||||
|
|
||||||
## [1.1.2](https://github.com/Pr0methean/zip/compare/v1.1.1...v1.1.2) - 2024-04-28
|
## [1.1.2](https://github.com/Pr0methean/zip/compare/v1.1.1...v1.1.2) - 2024-04-28
|
||||||
|
|
||||||
### <!-- 1 -->🐛 Bug Fixes
|
### <!-- 1 -->🐛 Bug Fixes
|
||||||
|
|
|
@ -38,7 +38,7 @@ time = { workspace = true, optional = true, features = [
|
||||||
zstd = { version = "0.13.1", optional = true, default-features = false }
|
zstd = { version = "0.13.1", optional = true, default-features = false }
|
||||||
zopfli = { version = "0.8.0", optional = true }
|
zopfli = { version = "0.8.0", optional = true }
|
||||||
deflate64 = { version = "0.1.8", optional = true }
|
deflate64 = { version = "0.1.8", optional = true }
|
||||||
lzma-rs = { version = "0.3.0", optional = true }
|
lzma-rs = { version = "0.3.0", default-features = false, optional = true }
|
||||||
|
|
||||||
[target.'cfg(any(all(target_arch = "arm", target_pointer_width = "32"), target_arch = "mips", target_arch = "powerpc"))'.dependencies]
|
[target.'cfg(any(all(target_arch = "arm", target_pointer_width = "32"), target_arch = "mips", target_arch = "powerpc"))'.dependencies]
|
||||||
crossbeam-utils = "0.8.19"
|
crossbeam-utils = "0.8.19"
|
||||||
|
|
|
@ -30,7 +30,7 @@ fn real_main() -> i32 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*file.name()).ends_with('/') {
|
if file.is_dir() {
|
||||||
println!("File {} extracted to \"{}\"", i, outpath.display());
|
println!("File {} extracted to \"{}\"", i, outpath.display());
|
||||||
fs::create_dir_all(&outpath).unwrap();
|
fs::create_dir_all(&outpath).unwrap();
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -34,7 +34,7 @@ fn real_main() -> i32 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*file.name()).ends_with('/') {
|
if file.is_dir() {
|
||||||
println!(
|
println!(
|
||||||
"Entry {} is a directory with name \"{}\"",
|
"Entry {} is a directory with name \"{}\"",
|
||||||
i,
|
i,
|
||||||
|
|
Loading…
Add table
Reference in a new issue