bevy-playground/Cargo.toml

44 lines
1.3 KiB
TOML

[package]
name = "kodotag-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy = { version = "0.14.0", default-features = false, features = [
"bevy_asset",
"bevy_audio",
"bevy_color",
"bevy_state",
"bevy_core_pipeline", # rendering pipeline
"bevy_render",
"bevy_sprite",
"bevy_text", # for writing characters to the screen
"bevy_ui",
"bevy_winit",
"multi_threaded", # go faster
"png",
"x11", # run on non-wayland linuxes too
"trace", # tracing is nice
"wayland",
"wav", # sound files
# TODO: would be nice to get this working while developing
# "dynamic_linking",
# NOTE: Features we may want at some point.
# "vorbis", # music -- maybe mp3?
# "sysinfo_plugin", # probably will want this for troubleshooting or just surfacing useful information to the gamer
# "bevy_gizmos", # debug geometry?
# "track_change_detection", # for hot-reloading of assets? (scripts?)
# "file_watcher", # for hot-reloading of assets? (scripts?)
# "serialize" # for saving games or game-related information?
# "bevy_dev_tools", # possibly-useful development tools
# "detailed_trace", # probably useful troubleshooting information during runtime
] }
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3