Hello,
I'm following the Getting Started Guide, and I'm running into some strange errors with toml_edit.
I am on the latest nightly (cargo 1.86.0-nightly (fd784878c 2025-01-03)), and only have the following in my project. I disabled all the optimisations to see if they were causing issues, but didn't change anything. I also tried changing the edition to 2021, but that also didn't affect it.
I couldn't find any relevant issues on the bevy or toml_edit github repos, so thought I'd ask here
# /Cargo.toml
[package]
name = "megugame"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = "0.15.1"
// /src/main.rs
use bevy::prelude::*;
fn main() {
App::new().run();
}
