Build failed on rustc 1.2.0-nightly (9ad0063a1 2015-06-20)
Closed this issue · 2 comments
anryko commented
$ rustc --version
rustc 1.2.0-nightly (9ad0063a1 2015-06-20)
$ cargo build
Compiling rusti v0.0.1 (file:///Users/xxx/Development/rust/rusti)
src/rusti/exec.rs:26:37: 26:53 error: unresolved import `rustc::session::config::UnstableFeatures`. There is no `UnstableFeatures` in `rustc::session::config`
src/rusti/exec.rs:26 use rustc::session::config::{Input, UnstableFeatures};
^~~~~~~~~~~~~~~~
error: aborting due to previous error
Could not compile `rusti`.
To learn more, run the command again with --verbose.
murarth commented
Fixed in the latest commit.
anryko commented
Works. Thanks!