-
-
Notifications
You must be signed in to change notification settings - Fork 59
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
Not able to build using rust 1.26 #11
Comments
I can confirm, I'm getting the same problem. |
The last pull request changed some |
@starkat99 @JoshuaBatty @Rua FYI: I got the same issue when trying to build https://github.com/paulrouget/servoshell (which has And for my interest: Directly building
Can someone please explain this to me (why something that solves the problem on the other hand produces that warning)? I only have 2 days experience in Rust coding :D |
On rust version 1.26 I get the following error. When I updated to Rust 1.27 the error went away.
error[E0599]: no function or associated item named
from_bits
found for typef64
in the current scope--> /Users/joshuabatty/.cargo/registry/src/github.jparrowsec.cn-1ecc6299db9ec823/half-1.1.1/src/lib.rs:808:9
|
808 | f64::from_bits(sign | exp | man)
| ^^^^^^^^^^^^^^ function or associated item not found in
f64
|
= help: items from traits can only be used if the trait is in scope
= note: the following trait is implemented but not in scope, perhaps add a
use
for it:candidate #1:
use core::num::Float;
The text was updated successfully, but these errors were encountered: