aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: e7c8dd54f07c5c9f6f36075eeb042ef239a2f340 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[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 = []