audioshader/Cargo.toml

20 lines
412 B
TOML
Raw Normal View History

2025-08-30 20:48:38 +00:00
[package]
2025-08-31 11:36:29 +00:00
edition = "2024"
name = "bevy_test"
version = "0.1.0"
2025-08-30 20:48:38 +00:00
[dependencies]
2025-08-31 11:48:17 +00:00
bevy = { version = "0.16", features = ["file_watcher"] }
2025-09-04 08:39:53 +00:00
cpal = "0.16"
crossbeam-channel = "0.5"
rodio = "0.21"
2025-08-31 12:26:40 +00:00
# Enable a small amount of optimization in the dev profile.
[profile.dev]
opt-level = 1
# Enable a large amount of optimization in the dev profile for dependencies.
[profile.dev.package."*"]
opt-level = 3