build: bump clap crates to v3.2 (#4067)

This commit is contained in:
David Knaack 2022-06-15 23:31:12 +02:00 committed by GitHub
parent 09bbea8197
commit 009eb93c83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ notify = ["notify-rust"]
[dependencies] [dependencies]
ansi_term = "0.12.1" ansi_term = "0.12.1"
chrono = "0.4.19" chrono = "0.4.19"
clap = { version = "3.1.18", features = ["derive", "cargo", "unicode"] } clap = { version = "=3.2.4", features = ["derive", "cargo", "unicode", "unstable-v4"] }
clap_complete = "3.2.1" clap_complete = "3.2.1"
dirs-next = "2.0.0" dirs-next = "2.0.0"
dunce = "1.0.2" dunce = "1.0.2"

View File

@ -606,7 +606,7 @@ pub struct Properties {
#[clap(long, value_delimiter = ' ')] #[clap(long, value_delimiter = ' ')]
pub pipestatus: Option<Vec<String>>, pub pipestatus: Option<Vec<String>>,
/// The width of the current interactive terminal. /// The width of the current interactive terminal.
#[clap(short = 'w', long, default_value_t=default_width(), parse(try_from_str=parse_width))] #[clap(short = 'w', long, default_value_t=default_width(), value_parser=parse_width)]
terminal_width: usize, terminal_width: usize,
/// The path that the prompt should render for. /// The path that the prompt should render for.
#[clap(short, long)] #[clap(short, long)]
@ -622,7 +622,7 @@ pub struct Properties {
#[clap(short = 'k', long, default_value = "viins")] #[clap(short = 'k', long, default_value = "viins")]
pub keymap: String, pub keymap: String,
/// The number of currently running jobs /// The number of currently running jobs
#[clap(short, long, default_value_t, parse(try_from_str=parse_jobs))] #[clap(short, long, default_value_t, value_parser=parse_jobs)]
pub jobs: i64, pub jobs: i64,
} }