We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Many #[clap(...)] and #[arg(...)] attributes in the project are still using syntax deprecated since clap 4.0. This includes:
#[clap(...)]
#[arg(...)]
#[clap(...)] → should be replaced with #[command(...)] or #[arg(...)]
#[command(...)]
#[arg(action)] → removed, since action is now the default in clap v4
#[arg(action)]
#[arg(name = "...")] → should be updated to #[arg(id = "...")] or #[arg(value_name = "...")]
#[arg(name = "...")]
#[arg(id = "...")]
#[arg(value_name = "...")]
Deprecated usage of value_parser and action which are now default in clap 4.x and no longer needed.
Errors:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
Many
#[clap(...)]
and#[arg(...)]
attributes in the project are still using syntax deprecated since clap 4.0. This includes:#[clap(...)]
→ should be replaced with#[command(...)]
or#[arg(...)]
#[arg(action)]
→ removed, since action is now the default in clap v4#[arg(name = "...")]
→ should be updated to#[arg(id = "...")]
or#[arg(value_name = "...")]
Deprecated usage of value_parser and action which are now default in clap 4.x and no longer needed.
Errors:
The text was updated successfully, but these errors were encountered: