riker-rs / riker

Easily build efficient, highly concurrent and resilient applications. An Actor Framework for Rust.
https://riker.rs
MIT License
1.02k stars 69 forks source link

cargo build error #67

Open louloulin opened 5 years ago

louloulin commented 5 years ago

error[E0554]: #![feature] may not be used on the stable release channel --> src\lib.rs:2:1 | 2 | #![feature(async_await)] | ^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error

For more information about this error, try rustc --explain E0554. error: Could not compile riker.

hardliner66 commented 5 years ago

You have to use the nightly toolchain. If you installed rust via rustup, you can override your toolchain for your project with:

rustup override set nightly
hardliner66 commented 4 years ago

@leenozara This issue can be closed, because #![feature(async_await)] already got removed.

Riker now even compiles on stable, so we might want to update the README to reflect that.