-
Notifications
You must be signed in to change notification settings - Fork 313
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
use 'cargo-hack' to run MSRV check without dev dependencies #754
Conversation
latest bug looks like some kind of network error. |
b806484
to
db81844
Compare
msrv: | ||
runs-on: ubuntu-latest | ||
env: | ||
CARGO_NET_GIT_FETCH_WITH_CLI: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the 1.43.1 version of cargo does not appear to work in CI without this line. This should be reviewed on the next MSRV bump
87cde43
to
6e5dcbf
Compare
I don't know much about CI configuration yet so I can only approve the documentation change about MSRV. |
decouple the MSRV check from the dev dependencies using
cargo-hack
this allows dev dependencies to be updated without impacting downstream users.
note that the MSRV used in this PR was found using the following command-
cargo msrv -- cargo no-dev-deps check
(which requires installing
cargo-msrv
andcargo-no-dev-deps
)