#Failure to parse manifest at ~/cargo.toml
19 messages · Page 1 of 1 (latest)
do you need to update cargo
yeah it is cargo 1.82.0
try setting edition = "2021" in your Cargo.toml
yeah
what does your Cargo.toml look like?
oh wait
The package requires the Cargo feature called edition2024, but that feature is not stabilized in this version of Cargo (1.82.0).
edition = "2021"
[package]
name = "guessing_game"
version = "0.1.0"
edition = "2024"
[dependencies]
rand = "0.8.5"
yeah but replace the edition line with it
[package]
name = "guessing_game"
version = "0.1.0"
edition = "2021"
[dependencies]
rand = "0.8.5"
omg im so stupid