Help: Stuck at clap v3 to v4 transition #5475
Unanswered
ayushbindlish
asked this question in
Q&A
Replies: 1 comment
-
In the changelog is a migration guide which suggests enabling deprecations before upgrading. This should give suggestions on how to update that line and it should be runnable in clap v3 so you can decouple and verify those changes separate from the upgrade. As a quick overview, the v3.0.0 split |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
I am trying to upgrade this code which was using structopt. I have been able to upgrade to clap v3 but I am stuck at v4 transition.
What I would like to understand is how can I upgrade the following line to use clap v4?
#[clap(parse(from_os_str), long, required = true, multiple = true)]
clap version:
clap = { version = "3.2.25", features = ["derive"] }
TIA
Beta Was this translation helpful? Give feedback.
All reactions