aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 5b016a5f627feccd9bb3e0f5e74d758845af1f2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "cosin-2025-invite-deck"
version = "0.1.0"
edition = "2021"

[dependencies]
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 = []
# Bundle-in SDL. Not enabled for demo submission builds. Useful for compatibility.
bundled = ["sdl2/bundled"]