diff --git a/Cargo.lock b/Cargo.lock index 14f62a2..c6eb0b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -711,7 +711,7 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" [[package]] name = "pacman" -version = "0.80.1" +version = "0.80.2" dependencies = [ "anyhow", "bevy_ecs", diff --git a/Cargo.toml b/Cargo.toml index 8fe82f2..563463f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pacman" -version = "0.80.1" +version = "0.80.2" authors = ["Xevion"] edition = "2021" rust-version = "1.86.0" @@ -89,6 +89,12 @@ opt-level = "z" lto = true panic = "abort" +# This profile is intended to appear as a 'release' profile to the build system due to`debug_assertions = false`, +# but it will compile faster without optimizations. Useful for rapid testing of release-mode logic. +[profile.dev-release] +inherits = "dev" +debug-assertions = false + [package.metadata.vcpkg] dependencies = ["sdl2", "sdl2-image", "sdl2-ttf", "sdl2-gfx", "sdl2-mixer"] git = "https://github.com/microsoft/vcpkg"