[package] name = "martian-chess" description = "Martian Chess videogame" version = "0.1.0" edition = "2021" build = "build.rs" [dependencies] bevy_fmod = { git = "https://github.com/Salzian/bevy_fmod.git", branch = "main" } bevy = { version = "0.13", features = ["jpeg", "hdr", "serialize"] } serde = "1" toml = { version = "0.8", features = ["parse"] } anyhow = "*" thiserror = "*" winit = "*" image = "*" gltf = "*" [features] trace = ["bevy/trace_tracy", "bevy/trace_tracy_memory"] debug = ["bevy/dynamic_linking", "bevy/file_watcher", "bevy_fmod/live-update"] [profile.dev] debug = 1 [profile.dev.package."*"] opt-level = 3 [profile.release] opt-level = "z" strip = true panic = "abort" lto = true codegen-units = 1