chore: bump version, add 'dev-release' debug profile

This commit is contained in:
Ryan Walters
2025-09-11 13:46:05 -05:00
parent f340de80f3
commit b58a7a8f63
2 changed files with 8 additions and 2 deletions

View File

@@ -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"