Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Hainish committed Feb 22, 2022
1 parent 8be3f25 commit 0bc54ff
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 35 deletions.
107 changes: 75 additions & 32 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions src/cli.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use clap::{App, Arg, ArgEnum, PossibleValue};
use clap::{Command, Arg, ArgEnum, PossibleValue};

const VERSION: &str = env!("CARGO_PKG_VERSION");

Expand Down Expand Up @@ -40,8 +40,8 @@ impl std::str::FromStr for DownloadSource {
}
}

pub fn app() -> App<'static> {
App::new(format!("apkeep v{}", VERSION))
pub fn app() -> Command<'static> {
Command::new(format!("apkeep v{}", VERSION))
.author("William Budington <[email protected]>")
.about("Downloads APKs from various sources")
.override_usage("apkeep <-a app_id[@version] | -c csv [-f field] [-v version_field]> [-d download_source] [-r parallel] OUTPATH")
Expand Down

0 comments on commit 0bc54ff

Please sign in to comment.