Skip to content

Commit

Permalink
Update dependencies and fix breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zefr0x committed Sep 29, 2022
1 parent 632ab1f commit 46904b2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 34 deletions.
36 changes: 6 additions & 30 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ rusqlite = "0.28.0"
tempfile = "3.3.0"
configparser = "3.0.1"
dirs = "4.0.0"
clap = "3.2.17"
clap = "4.0.2"

[build-dependencies]
clap = "3.2.17"
clap_complete = "3.2.4"
clap = "4.0.2"
clap_complete = "4.0.1"
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::path::PathBuf;
use clap::builder::NonEmptyStringValueParser;
use clap::{Arg, ArgAction, Command};

pub fn build_cli() -> Command<'static> {
pub fn build_cli() -> Command {
Command::new(env!("CARGO_PKG_NAME"))
.about(env!("CARGO_PKG_DESCRIPTION"))
// FIXME:
Expand Down

0 comments on commit 46904b2

Please sign in to comment.