aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e52fd22..e7c8dd5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,6 +19,14 @@ panic = "abort"
rusttype = "0.9.3"
[features]
-default = []
+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 = []