Skip to content

Commit

Permalink
refactor(args): move from structopt to clap
Browse files Browse the repository at this point in the history
  • Loading branch information
benpueschel committed Jul 7, 2024
1 parent 0f13751 commit 1fa1e32
Show file tree
Hide file tree
Showing 4 changed files with 138 additions and 141 deletions.
220 changes: 104 additions & 116 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[features]
default = [ "color", "keyring" ]
color = [ "structopt/color", "dep:ansi_term" ]
color = [ "clap/color", "dep:ansi_term" ]
keyring = [ "dep:keyring" ]

[dependencies]
Expand All @@ -18,6 +18,6 @@ serde_json = "1.0.120"
tokio = { version = "1.38.0", features = ["full", "macros"] }
toml = "0.8.14"
keyring = { version = "2.3.3", optional = true }
structopt = "0.3.26"
rpassword = "7.3.1"
ansi_term = { version = "0.12.1", optional = true }
clap = { version = "4.5.8", features = ["derive", "deprecated"] }
Loading

0 comments on commit 1fa1e32

Please sign in to comment.