Add bevy_egui and use example code from there, use mold for starter Rust linking and update README

This commit is contained in:
csd4ni3l
2025-12-22 20:18:18 +01:00
parent 90925ae173
commit 98fd370ee5
4 changed files with 273 additions and 20 deletions

View File

@@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2024"
[dependencies]
bevy_egui = "0.38.1"
cpal = "0.17.0"
rand = "0.9.2"
rfd = "0.16.0"
@@ -17,5 +18,6 @@ features = [
"bevy_winit",
]
[profile.dev.package."*"]
opt-level = 3
[target.'cfg(target_os = "linux")']
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=/usr/bin/mold"]