From c78f939a21644077e928ee2c476b94d153b108e2 Mon Sep 17 00:00:00 2001 From: Tatsunori Uchino Date: Fri, 12 Feb 2021 01:25:41 +0900 Subject: [PATCH] Version 0.3.0 - Modify some options - Improve code - Make internal libraries available --- Cargo.lock | 2 +- Cargo.toml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 971ace3..a8159ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -501,7 +501,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "zifu" -version = "0.2.1" +version = "0.3.0" dependencies = [ "ansi_term", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 4847a88..a0ef8b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zifu" -version = "0.2.1" +version = "0.3.0" authors = ["Tatsunori Uchino "] edition = "2018" license = "MIT" @@ -10,6 +10,13 @@ description = "Repair corrupted file names in ZIP archives" categories = ["command-line-utilities"] keywords = ["zip", "archive", "utf-8", "encoding"] +[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] @@ -27,10 +34,3 @@ hfs_nfd = "1" oem_cp = "0" locale_name_code_page = "<2" lazy_static = "1.4.0" - -[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.""" \ No newline at end of file