-
Notifications
You must be signed in to change notification settings - Fork 176
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
Build fails with "unstable feature" error in rkv dependency #10
Comments
It should actually build on Rust stable, in fact the CI is checking that. Can you say which Rust version you are on? ( |
rustc 1.32.0 Thanks; I'll try the update. I was just using whatever the latest rustc in Debian GNU/Linux 'testing' distro is -- which is apparently not quite up-to-date with upstream stable. |
i meet the same issue and solved with |
You don't need nightly to solve this, just Rust 1.34 or higher. |
I've modified the readme to make it clearer you need 1.35+. I don't think I want to support older Rust versions |
Thanks everyone for the followups. I'll get 1.35 or higher and use that. |
I tried doing
cargo build
(ofmaster
at commit ef2e4eb) and got this error:I don't know much Rust, but it looks like rkv is using an unstable feature (rust bug 33417 has more about it), and that since rga depends on rkv, this affects the rga build too. I ran
rustc --explain E0658
and got some information about how to solve the problem -- presumably those solutions would have to be implemented upstream in rkv, if we wanted to solve this for everyone, or else I'd have either build a modified rkv locally or get the nightly version ofrustc
to do the build I just tried to do.I'm not sure what ways might be available to solve this within rga. Ideas welcome; like I said, I don't know Rust that well.
Anyway, this was all along the way to submitting a PR for
README.md
to add installation instructions. I'll submit that PR, and then in its commentary mention this issue.The text was updated successfully, but these errors were encountered: