Why is cargo failing to build Bevy due to unstable features? I thought Bevy supported stable Rust versions? #6684
Answered
by
hymm
montreal91
asked this question in
Q&A
-
Hello everyone, Bevy is Awesome! I'm trying to make a hello world with bevy 0.9 and all of a sudden, I can't. My Cargo.toml is dead simple [package]
name = "bevy0-9"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = "0.9" When I enter
Bevy 0.8.1 works well, so I don't know what to think. Looks like some kind of bug, but I'm not sure. |
Beta Was this translation helpful? Give feedback.
Answered by
hymm
Nov 18, 2022
Replies: 1 comment 6 replies
-
You need to update rust to 1.65 or newer. Run |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
alice-i-cecile
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to update rust to 1.65 or newer. Run
rustup update
.