-
Notifications
You must be signed in to change notification settings - Fork 67
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
Fail Compilation with Rust Nightly. #75
Comments
Same here. I'm now on |
same issue: rustc 1.30.0-nightly (63d66494a 2018-08-23) |
Seeing this with: rustc 1.32.0 (9fda7c223 2019-01-16) |
rustc 1.34.0 (91856ed52 2019-04-10) |
Hey guys, I don't have this problem anymore - I've just done a stupid mistake. Check if you compile it with correct target - e.g. |
But what if that is your intended target? |
If you think |
net2 is a dependent crate for hyper- Rust http library. I'm trying to compile the hyper crate with the Rust nightly compiler but the error messages I'm getting seems to be coming from this crate.
error[E0432]: unresolved import
sys
--> /home/myUsername/.cargo/registry/src/github.com-1ecc6299db9ec823/net2-0.2.32/src/tcp.rs:18:5
|
18 | use sys::c;
| ^^^ Maybe a missing
extern crate sys;
?error[E0432]: unresolved import
sys
--> /home/myUsername/.cargo/registry/src/github.com-1ecc6299db9ec823/net2-0.2.32/src/udp.rs:18:5
|
18 | use sys::c;
| ^^^ Maybe a missing
extern crate sys;
?There is at least 245 similar errors from this crate.
The text was updated successfully, but these errors were encountered: