-
Notifications
You must be signed in to change notification settings - Fork 50
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
Add MSRV policy regarding wasm-bindgen #162
Conversation
wasm-bindgen recently bumped its MSRV to v1.73, which is much higher than our MSRV of 1.64. Add an note to the README describing our MSRV policy, and then test for it in CI. Signed-off-by: John Nunley <[email protected]>
Signed-off-by: John Nunley <[email protected]>
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.
wasm-bindgen
s MSRV is v1.60, but bumpalo
, one of its dependencies, has been raised. This is hopefully something Cargo can fix in the future: rust-lang/cargo#9930.
Otherwise LGTM.
.github/workflows/ci.yml
Outdated
@@ -31,7 +31,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
rust_version: ["1.64", stable, nightly] | |||
rust_version: ["1.64", "1.73", stable, nightly] |
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.
We should rather pin bumpalo
, as in daxpedda/web-time@5f49b76.
When the `wasm-bindgen-0-2` feature is enabled, the MSRV of this crate will be | ||
raised to the MSRV of the latest version of `wasm-bindgen`. |
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.
I think this change is good, because wasm-bingen
still does not have an official MSRV policy.
Signed-off-by: John Nunley <[email protected]>
Signed-off-by: John Nunley <[email protected]>
Signed-off-by: John Nunley <[email protected]>
wasm-bindgen recently bumped its MSRV to v1.73, which is much higher
than our MSRV of 1.64. Add an note to the README describing our MSRV
policy, and then test for it in CI.
cc @daxpedda