Skip to content

Commit

Permalink
Version 1.0.1 (Update dependencies)
Browse files Browse the repository at this point in the history
Include bug fix in zifu-core v0.1.1
  • Loading branch information
tats-u committed Nov 7, 2021
1 parent 438e722 commit c01a166
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 29 deletions.
50 changes: 28 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zifu"
version = "1.0.0"
version = "1.0.1"
authors = ["Tatsunori Uchino <tats.u@live.jp>"]
edition = "2018"
license = "MIT"
Expand All @@ -22,9 +22,9 @@ This tool automatically detects the encoding of the files in the ZIP archive and

[dependencies]
ansi_term = "0.12.1"
clap = "3.0.0-beta.4"
anyhow = "1.0.44"
thiserror = "1.0.29"
clap = "3.0.0-beta.5"
anyhow = "1.0.45"
thiserror = "1.0.30"
lazy_static = "1.4.0"
atty = "^0.2"
rand = {version = "0.8.4", features = ["std_rng"]}
Expand Down
5 changes: 2 additions & 3 deletions src/bin/zifu.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use ansi_term::ANSIGenericString;
use anyhow::anyhow;
use clap::{crate_authors, crate_description, crate_version, AppSettings, Clap};
use clap::{crate_authors, crate_description, crate_version, Parser};
use filename_decoder::IDecoder;
use lazy_static::lazy_static;
use rand::rngs::StdRng;
Expand Down Expand Up @@ -131,9 +131,8 @@ fn ask_default_yes() -> Result<bool, std::io::Error> {
return Ok(process_answer_default_yes(&ask_result));
}

#[derive(Clap)]
#[derive(Parser)]
#[clap(name = "ZIP File Names to UTF-8 (ZIFU)", version = crate_version!(), author = crate_authors!(), about = crate_description!())]
#[clap(setting = AppSettings::ColoredHelp)]
struct CLIOptions {
#[clap(
about = "Path to the ZIP file where you want to change the encoding of the file name to UTF-8"
Expand Down

0 comments on commit c01a166

Please sign in to comment.