-
Notifications
You must be signed in to change notification settings - Fork 330
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
Pin unicode-normalization for Rust 1.33 CI build #572
Conversation
In order to not have MaybeUninit I think we want to have precise flags on smallvec as well as on unicode-normalization I have just tested Edit: |
Any smallvec 0.6 version is compatible with Rust 1.33, so pinning unicode-normalization to 0.1.9 should be sufficient. I'm not sure why the failing Travis build is using unicode-normalization 0.1.11. The script is working correctly locally... |
Oh that's weird indeed, I was pretty confident smallvec version = "0.6.13" carried a backport of maybeuninit. Sorry for the noise |
smallvec 0.6.13 uses the |
Oh ok, thanks for pointing it out to me ! :) |
See servo#566 for details.
I think the previous error was caused by rust-lang/cargo#6904. Trying a workaround. |
And it passed ! 🎉 |
Right. |
Thanks for the PR but this approach feels dissatisfying to me. I think I’d prefer either to have this requirement in |
See #566 for details.