Skip to content

Commit

Permalink
Update cargo-options 0.7.1 (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
messense authored Nov 22, 2023
1 parent 8c52939 commit c3bcc30
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 3 additions & 2 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 @@ -17,8 +17,8 @@ pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }.{ targe
[dependencies]
anyhow = "1.0.53"
cargo-config2 = "0.1.4"
cargo-options = "0.6.0"
clap = { version = "4.0.0", features = ["derive", "env", "wrap_help"] }
cargo-options = "0.7.1"
clap = { version = "4.3.0", features = ["derive", "env", "wrap_help", "unstable-styles"] }
dirs = "5.0.0"
fs-err = "2.7.0"
indicatif = "0.17.2"
Expand Down
6 changes: 5 additions & 1 deletion src/bin/cargo-xwin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ use cargo_xwin::{Build, Check, Clippy, Run, Rustc, Test};
use clap::{Parser, Subcommand};

#[derive(Debug, Parser)]
#[command(version, name = "cargo-xwin")]
#[command(
version,
name = "cargo-xwin",
styles = cargo_options::styles(),
)]
pub enum Cli {
#[command(subcommand, name = "xwin")]
Opt(Opt),
Expand Down

0 comments on commit c3bcc30

Please sign in to comment.