-
Notifications
You must be signed in to change notification settings - Fork 227
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
Panic on rust 1.44.0 #313
Comments
For those also affected by this issue, the temporary fix is (for macOS): rustup install 1.43.0
rustup default 1.43.0-x86_64-apple-darwin For me the error looked like this:
|
Just to be clear, this panics when compiling, not in the NIF, is that right? I think we can reasonably backport that patch and do an intermediary patch release. |
It panics during |
@scrogson @hansihe I created a branch that backports the patch to 0.21 and bumps the version to 0.21.1 at https://github.com/rusterlium/rustler/tree/rustler-0.21-backport, you only need to check it out and run
I suggest you do that as soon as possible, this can result in some very nasty surprises for people in production. |
v0.21.1 published. @filmor thanks for taking care of the changes 👍 |
This fixes rusterlium/rustler#313, which makes rustler panic on rust 1.44 and above.
The release of rust-lang/rust#66059 in 1.44.0 makes things panic that didn't before, and rustler is affected by it. The changes in #239 fix it, and that cherry-picks (almost) cleanly on top of 0.21.0. Perhaps it would be a good idea to release a version 0.21.1 with that change, if 0.22 isn't ready for release yet?
The text was updated successfully, but these errors were encountered: