refactor: Move from deprecated multiple

This commit is contained in:
Ed Page 2022-01-18 16:22:27 -06:00
parent ac8526688a
commit a19d91ef37
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ pub fn make_subcommand<'help>() -> App<'help> {
.takes_value(true) .takes_value(true)
.use_delimiter(true) .use_delimiter(true)
.require_delimiter(true) .require_delimiter(true)
.multiple(true) .multiple_values(true)
.multiple_occurrences(true)
.forbid_empty_values(true) .forbid_empty_values(true)
.help("A comma-separated list of directories to add to {n}the crate search path when building tests")) .help("A comma-separated list of directories to add to {n}the crate search path when building tests"))
} }