blob: f508805875509deaba224cdeeecc4bb22c4d0d9e (
plain) (
tree)
|
|
[package]
name = "cosin-2025-invite-deck"
version = "0.1.0"
edition = "2021"
[dependencies]
bytemuck = "1.21.0"
rand = "0.8.5"
sdl2 = { version = "0.37.0" }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[build-dependencies]
rusttype = "0.9.3"
[features]
default = ["music"]
# Bundle-in SDL. Not enabled for demo submission builds. Useful for compatibility.
bundled = ["sdl2/bundled"]
# Don't timeout the demo - pass --features notimeout to disable the DVD screen timeout
notimeout = []
# Make the window resizable - can let you trigger unexpected/undefined behaviour
resizable = []
# Use Music
music = []
# Compiles to <=32k on linux after UPX with --brute
32k = []
# Use Stereo Audio
stereo = ["music"]
# Use Logical Size; forces internal render resolution of 512x256
logical = []
# Launch in fullscreen
fullscreen = []
# Loop the music
loop_music = ["music"]
|