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
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -606,7 +606,7 @@ pub struct Properties {
#[clap(long, value_delimiter = ' ')]
pub pipestatus: Option<Vec<String>>,
/// 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,
/// The path that the prompt should render for.
#[clap(short, long)]
@@ -622,7 +622,7 @@ pub struct Properties {
#[clap(short = 'k', long, default_value = "viins")]
pub keymap: String,
/// 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,
}