My first Rust project's initialization and default modules, plus some starting bevy code.

This commit is contained in:
csd4ni3l
2025-12-22 15:20:52 +01:00
commit 90925ae173
7 changed files with 7403 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "soundboard"
version = "0.1.0"
edition = "2024"
[dependencies]
cpal = "0.17.0"
rand = "0.9.2"
rfd = "0.16.0"
rodio = { version = "0.21.1", features = ["mp3", "wav", "flac", "vorbis"] }
[dependencies.bevy]
version = "0.17.3"
features = [
"wayland",
"x11",
"bevy_winit",
]
[profile.dev.package."*"]
opt-level = 3