-
Notifications
You must be signed in to change notification settings - Fork 65
unable to compile 'trust' #5
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
Comments
You need to compile this project using a nightly version of the compiler. What error do you get when you try to build it that way? |
This feature was stabilized in Rust 1.38. The feature attribute needs to be removed now that the feature is stable to compile on any post-1.38 nightly. |
Ah, I misunderstood! Fix pushed. |
thanks! the error is gone. now just some warnings. I'm using the latest nightly (2021-01-05). |
Hehe, it's a while ago. You'd have to see what I do in the live-stream video I think :) |
I am using the latest stable version of rust to build this project. it stopped at here:
Compiling trust v0.1.0 (/home/brian/code/rust-tcp)
error[E0554]:
#![feature]
may not be used on the stable release channel--> src/lib.rs:1:1
|
1 | #![feature(duration_float)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
For more information about this error, try
rustc --explain E0554
.error: could not compile
trust
it looks the nightly I am using doesn't support it anymore. which nightly should be used?
thanks!
The text was updated successfully, but these errors were encountered: