-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
clap 2.33.3
has incorrect MSRV due to bitflags 1.3
MSRV bump
#2691
Labels
A-docs
Area: documentation, including docs.rs, readme, examples, etc...
Comments
CosmicHorrorDev
added
the
A-docs
Area: documentation, including docs.rs, readme, examples, etc...
label
Aug 13, 2021
This is one of those complications from MSRV:
The best I can offer at the moment is to use |
This was referenced Aug 23, 2021
@epage I ran into the same error. Would you mind giving me an example how to patch the transitive dependency I tried to use a patch as the following but it does not work. [patch.crates-io]
clap = {git = "https://github.com/clap-rs/clap", tag = "v2.33.3"}
|
meain
added a commit
to meain/lsd
that referenced
this issue
Jul 3, 2022
This was initially pinned because of clap-rs/clap/issues/2691, but we use a newer version as MSRV as of now in CI.
meain
added a commit
to lsd-rs/lsd
that referenced
this issue
Jul 5, 2022
This was initially pinned because of clap-rs/clap/issues/2691, but we use a newer version as MSRV as of now in CI.
27 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please complete the following tasks
Clap Version
2.33.3
Where?
bitflags/bitflags#255
What's wrong?
The README states that
clap
>=2.21 has an MSRV of 1.42, but the dependency onbitflags = "1.2"
allows for v1.3 which bumps the requirement up to 1.46How to fix?
Either pin the requirement for bitflags to 1.2.x, bump the MSRV, or work with bitflags to see if something else can be sorted out
The text was updated successfully, but these errors were encountered: