zifu 0.6.0

Repair corrupted file names in ZIP archives
Documentation
[package]
name = "zifu"
version = "0.6.0"
authors = ["Tatsunori Uchino <tats.u@live.jp>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/tats-u/zifu/"
description = "Repair corrupted file names in ZIP archives"
categories = ["command-line-utilities"]
keywords = ["zip", "archive", "utf-8", "encoding"]
include = ["src/**/*", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE.txt"]

[package.metadata.deb]
extended-description = """
zifu is a command line tool to fix Windows-dependent encoded filenames of ZIP files.

In general, only ASCII characters are allowed for file names in a ZIP archive. However, uninformed non-English Windows users may include files with names in their native languages. Unfortunately, the ZIP archiver in Windows implicitly encodes the file names in encodings other than UTF-8, so they are garbled when unzipped under Linux.
This tool automatically detects the encoding of the files in the ZIP archive and explicitly re-encodes them as UTF-8, so that you can unzip them without any garbled characters even with the ZIP archiver bundled in Linux."""

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ansi_term = "0.12.1"
clap = "3.0.0-beta.4"
byteorder = "1.4.3"
anyhow = "1.0.43"
thiserror = "1.0.28"
encoding_rs = "0.8.28"
bytesize = "1.1.0"
locale_config = "0.3.0"
codepage = "0.1.1"
regex = "1"
hfs_nfd = "2"
oem_cp = "1.1.0"
locale_name_code_page = "<2"
lazy_static = "1.4.0"
zip_structs = "^0.2"
atty = "^0.2"

[dev-dependencies]
rusty-hook = "^0.11.2"
which = "4.2.2"
tempfile = "3.2.0"