Description
Hi,
I was playing around with Rocket and Rust using the helloworld example from https://rocket.rs/guide/getting-started. I first tried on my private laptop a few days ago and was very satisfied with the results. Today (2018-06-11) i tried to get everything running on my laptop at work and compilation fails with the following message:
Compiling rocket_codegen v0.3.12
error[E0432]: unresolved import `syntax::parse::common`
--> /home/sja/.cargo/registry/src/github.com-1ecc6299db9ec823/rocket_codegen-0.3.12/src/utils/parser_ext.rs:5:20
|
5 | use syntax::parse::common::SeqSep;
| ^^^^^^ Could not find `common` in `parse`
error[E0624]: method `parse_seq_to_end` is private
--> /home/sja/.cargo/registry/src/github.com-1ecc6299db9ec823/rocket_codegen-0.3.12/src/utils/parser_ext.rs:13:14
|
13 | self.parse_seq_to_end(&Eof,
| ^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors
Some errors occurred: E0432, E0624.
I am using the latest nightly as of today. I am running everthing on my Linux(Linux 4.14.48-2-MANJARO #1 SMP PREEMPT Fri Jun 8 20:41:40 UTC 2018 x86_64 GNU/Linux
) Laptop and used rustup to install nightly versions.
I have switched over to the nighly nightly-2018-06-09-x86_64-unknown-linux-gnu (default)
and everything compiles fine. So i assume it has something to do with Rust itself affecting Rocket.
Investigating further and reading the suggested error messages did not help for me as i am still not that familiar with Rust.
Regards
Sebastian